gleam_httpc 4.1.1 still calls result.then, which was removed from gleam_stdlib 0.71.0. Bumping the lower bound forces the resolver to pick 4.2.x or later, which uses result.try. The < 5.0.0 cap is also widened to < 6.0.0; the public API is unchanged between 4.2 and 5.0. Long term: committing a manifest.toml lockfile would stop transitive deps from drifting on every fresh build.
14 lines
355 B
TOML
14 lines
355 B
TOML
name = "coolcouch_signup"
|
|
version = "0.1.0"
|
|
target = "erlang"
|
|
|
|
[dependencies]
|
|
gleam_stdlib = ">= 0.59.0 and < 2.0.0"
|
|
gleam_http = ">= 4.0.0 and < 5.0.0"
|
|
gleam_httpc = ">= 4.2.0 and < 6.0.0"
|
|
gleam_json = ">= 3.0.0 and < 4.0.0"
|
|
gleam_erlang = ">= 1.0.0 and < 2.0.0"
|
|
envoy = ">= 1.0.0 and < 2.0.0"
|
|
mist = ">= 4.0.0 and < 6.0.0"
|
|
wisp = ">= 1.6.0 and < 2.0.0"
|