Skip to content

Commit

Permalink
Upgrade deps, exclude broken simplifile version
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Mar 30, 2024
1 parent e6a0f10 commit 03705e6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ links = [
]

[dependencies]
exception = "~> 2.0"
gleam_crypto = "~> 1.0"
gleam_erlang = "~> 0.21"
gleam_http = "~> 3.5"
gleam_json = "~> 0.6 or ~> 1.0"
gleam_stdlib = "~> 0.29 or ~> 1.0"
mist = "~> 0.13 or ~> 1.0"
simplifile = "~> 1.4"
marceau = "~> 1.1"
logging = "~> 1.0"
exception = ">= 2.0.0 and < 3.0.0"
gleam_crypto = ">= 1.0.0 and < 2.0.0"
gleam_erlang = ">= 0.21.0 and < 2.0.0"
gleam_http = ">= 3.5.0 and < 4.0.0"
gleam_json = ">= 0.6.0 and < 2.0.0"
gleam_stdlib = ">= 0.29.0 and < 2.0.0"
mist = ">= 0.13.0 and < 2.0.0"
simplifile = ">= 1.4.0 and != 1.6.0 and < 2.0.0"
marceau = ">= 1.1.0 and < 2.0.0"
logging = ">= 1.0.0 and < 2.0.0"

[dev-dependencies]
gleeunit = "~> 1.0"
22 changes: 11 additions & 11 deletions manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ packages = [
{ name = "marceau", version = "1.1.0", build_tools = ["gleam"], requirements = [], otp_app = "marceau", source = "hex", outer_checksum = "1AAD727A30BE0F95562C3403BB9B27C823797AD90037714255EEBF617B1CDA81" },
{ name = "mist", version = "1.0.0", build_tools = ["gleam"], requirements = ["birl", "gleam_erlang", "gleam_http", "gleam_otp", "gleam_stdlib", "glisten", "hpack_erl", "logging"], otp_app = "mist", source = "hex", outer_checksum = "7765E53DCC9ACCACF217B8E0CA3DE7E848C783BFAE5118B75011E81C2C80385C" },
{ name = "ranger", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "ranger", source = "hex", outer_checksum = "28E615AE7590ED922AF1510DDF606A2ECBBC2A9609AF36D412EDC925F06DFD20" },
{ name = "simplifile", version = "1.6.0", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "6B3BDBD0E504AC4C633F299BE46DF358BC1E08BA78FE4E63CA7766C553E76C19" },
{ name = "simplifile", version = "1.6.1", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "B75D3C64E526D9D7EDEED5F3BA31DAAF5F2B4D80A4183FE17FDB02ED526E4E96" },
{ name = "thoas", version = "0.4.1", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "4918D50026C073C4AB1388437132C77A6F6F7C8AC43C60C13758CC0ADCE2134E" },
]

[requirements]
exception = { version = "~> 2.0" }
gleam_crypto = { version = "~> 1.0" }
gleam_erlang = { version = "~> 0.21" }
gleam_http = { version = "~> 3.5" }
gleam_json = { version = "~> 0.6 or ~> 1.0" }
gleam_stdlib = { version = "~> 0.29 or ~> 1.0" }
exception = { version = ">= 2.0.0 and < 3.0.0" }
gleam_crypto = { version = ">= 1.0.0 and < 2.0.0" }
gleam_erlang = { version = ">= 0.21.0 and < 2.0.0" }
gleam_http = { version = ">= 3.5.0 and < 4.0.0" }
gleam_json = { version = ">= 0.6.0 and < 2.0.0" }
gleam_stdlib = { version = ">= 0.29.0 and < 2.0.0" }
gleeunit = { version = "~> 1.0" }
logging = { version = "~> 1.0" }
marceau = { version = "~> 1.1" }
mist = { version = "~> 0.13 or ~> 1.0" }
simplifile = { version = "~> 1.4" }
logging = { version = ">= 1.0.0 and < 2.0.0" }
marceau = { version = ">= 1.1.0 and < 2.0.0" }
mist = { version = ">= 0.13.0 and < 2.0.0" }
simplifile = { version = ">= 1.4.0 and != 1.6.0 and < 2.0.0" }

0 comments on commit 03705e6

Please sign in to comment.