aboutsummaryrefslogtreecommitdiff
path: root/gleam.toml
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2021-12-31 16:07:45 +0000
committerLouis Pilfold <louis@lpil.uk>2021-12-31 16:07:45 +0000
commit0d1188631e400c1733ad893cc07bfb050bd9664f (patch)
tree4bc7ad28945b6d4a6c2a18358724a38db5f161a1 /gleam.toml
parente680f6fd0213d133f188064b684c1c56080f831f (diff)
downloadgleam_json-0d1188631e400c1733ad893cc07bfb050bd9664f.tar.gz
gleam_json-0d1188631e400c1733ad893cc07bfb050bd9664f.zip
Convert to use Gleam build tool
Diffstat (limited to 'gleam.toml')
-rw-r--r--gleam.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/gleam.toml b/gleam.toml
index 7b25c8d..c5f59c3 100644
--- a/gleam.toml
+++ b/gleam.toml
@@ -1 +1,17 @@
name = "gleam_json"
+version = "0.1.0"
+licences = ["Apache-2.0"]
+description = "Work with JSON in Gleam"
+
+repository = { type = "github", user = "gleam", repo = "json" }
+links = [
+ { title = "Website", href = "https://gleam.run" },
+ { title = "Sponsor", href = "https://github.com/sponsors/lpil" },
+]
+
+[dependencies]
+gleam_stdlib = "~> 0.18"
+jsone = "~> 1.7"
+
+[dev-dependencies]
+gleeunit = "~> 0.5"