aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2024-04-25 12:18:28 +0100
committerLouis Pilfold <louis@lpil.uk>2024-04-25 12:18:28 +0100
commit9b4d07a4424b84af148b1396ee73f99afdf9c95d (patch)
treec0032a89ede1b01def0775991ef38c178031033b
parentfe794eed876b6b9b878986cf5a8d59bdb2886f91 (diff)
downloadgleam_json-9b4d07a4424b84af148b1396ee73f99afdf9c95d.tar.gz
gleam_json-9b4d07a4424b84af148b1396ee73f99afdf9c95d.zip
Relax constraints
-rw-r--r--gleam.toml4
-rw-r--r--manifest.toml8
2 files changed, 6 insertions, 6 deletions
diff --git a/gleam.toml b/gleam.toml
index 7089935..cfb5fca 100644
--- a/gleam.toml
+++ b/gleam.toml
@@ -12,8 +12,8 @@ links = [
]
[dependencies]
-gleam_stdlib = "~> 0.32 or ~> 1.0"
-thoas = "~> 1.2"
+gleam_stdlib = ">= 0.19.0 and < 2.0.0"
+thoas = ">= 0.2.0 and < 2.0.0"
[dev-dependencies]
gleeunit = "~> 1.0"
diff --git a/manifest.toml b/manifest.toml
index 73da39f..18592fb 100644
--- a/manifest.toml
+++ b/manifest.toml
@@ -2,12 +2,12 @@
# You typically do not need to edit this file
packages = [
- { name = "gleam_stdlib", version = "0.34.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1FB8454D2991E9B4C0C804544D8A9AD0F6184725E20D63C3155F0AEB4230B016" },
- { name = "gleeunit", version = "1.0.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D364C87AFEB26BDB4FB8A5ABDE67D635DC9FA52D6AB68416044C35B096C6882D" },
+ { name = "gleam_stdlib", version = "0.37.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "5398BD6C2ABA17338F676F42F404B9B7BABE1C8DC7380031ACB05BBE1BCF3742" },
+ { name = "gleeunit", version = "1.1.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "72CDC3D3F719478F26C4E2C5FED3E657AC81EC14A47D2D2DEBB8693CA3220C3B" },
{ name = "thoas", version = "1.2.0", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "540C8CB7D9257F2AD0A14145DC23560F91ACDCA995F0CCBA779EB33AF5D859D1" },
]
[requirements]
-gleam_stdlib = { version = "~> 0.32 or ~> 1.0" }
+gleam_stdlib = { version = ">= 0.19.0 and < 2.0.0" }
gleeunit = { version = "~> 1.0" }
-thoas = { version = "~> 1.2" }
+thoas = { version = ">= 0.2.0 and < 2.0.0" }