Packages
d1_gleamflare
1.0.3
A modern, type-safe Gleam library to integrate with the Cloudflare D1 REST API.
Current section
3 Versions
Jump to
Current section
3 Versions
Compare versions
4
files changed
+10
additions
-10
deletions
| @@ -14,7 +14,7 @@ Add `d1_gleamflare` to your `gleam.toml` dependencies: | |
| 14 14 | |
| 15 15 | ```toml |
| 16 16 | [dependencies] |
| 17 | - d1_gleamflare = ">= 1.0.0" |
| 17 | + d1_gleamflare = ">= 1.0.3" |
| 18 18 | ``` |
| 19 19 | |
| 20 20 | ## Quick Start |
| @@ -1,5 +1,5 @@ | |
| 1 1 | name = "d1_gleamflare" |
| 2 | - version = "1.0.1" |
| 2 | + version = "1.0.3" |
| 3 3 | target = "erlang" |
| 4 4 | |
| 5 5 | gleam = ">= 1.3.0" |
| @@ -1,6 +1,6 @@ | |
| 1 1 | {<<"name">>, <<"d1_gleamflare"/utf8>>}. |
| 2 2 | {<<"app">>, <<"d1_gleamflare"/utf8>>}. |
| 3 | - {<<"version">>, <<"1.0.1"/utf8>>}. |
| 3 | + {<<"version">>, <<"1.0.3"/utf8>>}. |
| 4 4 | {<<"description">>, <<"A modern, type-safe Gleam library to integrate with the Cloudflare D1 REST API."/utf8>>}. |
| 5 5 | {<<"licenses">>, [<<"Apache-2.0"/utf8>>]}. |
| 6 6 | {<<"build_tools">>, [<<"gleam"/utf8>>]}. |
| @@ -9,20 +9,20 @@ | |
| 9 9 | {<<"Repository"/utf8>>, <<"https://github.com/juliocabrera820/d1-gleamflare"/utf8>>} |
| 10 10 | ]}. |
| 11 11 | {<<"requirements">>, [ |
| 12 | - {<<"gleam_json"/utf8>>, [ |
| 13 | - {<<"app">>, <<"gleam_json"/utf8>>}, |
| 12 | + {<<"gleam_http"/utf8>>, [ |
| 13 | + {<<"app">>, <<"gleam_http"/utf8>>}, |
| 14 14 | {<<"optional">>, false}, |
| 15 | - {<<"requirement">>, <<">= 1.0.0 and < 2.0.0"/utf8>>} |
| 15 | + {<<"requirement">>, <<">= 3.0.0 and < 4.0.0"/utf8>>} |
| 16 16 | ]}, |
| 17 17 | {<<"gleam_httpc"/utf8>>, [ |
| 18 18 | {<<"app">>, <<"gleam_httpc"/utf8>>}, |
| 19 19 | {<<"optional">>, false}, |
| 20 20 | {<<"requirement">>, <<">= 2.0.0 and < 3.0.0"/utf8>>} |
| 21 21 | ]}, |
| 22 | - {<<"gleam_http"/utf8>>, [ |
| 23 | - {<<"app">>, <<"gleam_http"/utf8>>}, |
| 22 | + {<<"gleam_json"/utf8>>, [ |
| 23 | + {<<"app">>, <<"gleam_json"/utf8>>}, |
| 24 24 | {<<"optional">>, false}, |
| 25 | - {<<"requirement">>, <<">= 3.0.0 and < 4.0.0"/utf8>>} |
| 25 | + {<<"requirement">>, <<">= 1.0.0 and < 2.0.0"/utf8>>} |
| 26 26 | ]}, |
| 27 27 | {<<"gleam_stdlib"/utf8>>, [ |
| 28 28 | {<<"app">>, <<"gleam_stdlib"/utf8>>}, |
| @@ -1,5 +1,5 @@ | |
| 1 1 | {application, d1_gleamflare, [ |
| 2 | - {vsn, "1.0.1"}, |
| 2 | + {vsn, "1.0.3"}, |
| 3 3 | {applications, [gleam_http, |
| 4 4 | gleam_httpc, |
| 5 5 | gleam_json, |