Hey trying to use a bumped stdlib version of startest from here : https://github.com/dvic/startest/tree/bump-deps (this compiles fine with warnings)
But if I add it as a deps it to my gleam project if fails to compile, I don't understand why or how to debug this.
Initial repo/branch with the warning when building
warning: Deprecated value used
┌─ /Users/sgregory/Projects/dvic_startest/src/startest/test_failure.gleam:65:29
│
65 │ |> dict.get(dynamic.from(Module))
│ ^^^^ This value has been deprecated
Compiled in 0.08s
When compiling the deps of my project
error: Unknown module value
┌─ /Users/sgregory/Projects/sandbox/claude-cli-hook/build/packages/startest/src/startest/test_failure.gleam:65:29
│
65 │ |> dict.get(dynamic.from(Module))
│ ^^^^
The module `gleam/dynamic` does not have a `from` value.
my gleam.toml
[dependencies]
gleam_stdlib = ">= 0.60.0 and < 2.0.0"
[dev-dependencies]
startest = { git = "[email protected]:dvic/startest.git", ref = "bump-deps" }