#Hitting the The module `gleam/dynamic` does not have a `unsafe_coerce` value.

1 messages · Page 1 of 1 (latest)

static bay
#

Hey there I saw a few messages related to this (#general message)

But I'm trying to resolve it cause I want to go through https://gleaming.dev/articles/building-your-first-gleam-web-app/

Can someone tell me what my dependencies are supposed to be. When I try to pin 0.39 I get dep issues with

- gleam_json
- self_compassion (mine)
- lustre

[dependencies]
gleam_stdlib = ">= 0.34.0 and < 2.0.0"
wisp = ">= 0.16.0 and < 1.0.0"
lustre = ">= 4.3.6 and < 5.0.0"
mist = ">= 1.2.0 and < 2.0.0"
gleam_http = ">= 3.6.0 and < 4.0.0"
gleam_erlang = ">= 0.25.0 and < 1.0.0"
dot_env = ">= 1.1.0 and < 2.0.0"
gleam_json = ">= 1.0.1 and < 2.0.0"

[dev-dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"
Gleaming

Learn the basics of building web apps in Gleam using Wisp and Lustre.

cosmic axle
#

I managed to run through that article with these: ```[dependencies]
gleam_stdlib = ">= 0.34.0 and < 2.0.0"
wisp = ">= 1.1.0 and < 2.0.0"
mist = ">= 2.0.0 and < 3.0.0"
lustre = ">= 4.3.6 and < 5.0.0"
gleam_http = ">= 3.6.0 and < 4.0.0"
gleam_erlang = ">= 0.25.0 and < 1.0.0"
dot_env = ">= 1.1.0 and < 2.0.0"
gleam_json = ">= 1.0.1 and < 2.0.0"

[dev-dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"

agile aurora
#

Yeah the command should be: gleam add [email protected] lustre mist gleam_http gleam_erlang dot_env gleam_json

static bay
#

Okay that did the trick

#

Thank you both!