🧚 A practical web framework for Gleam

Make deps explicit

Changed files
+20 -4
examples
0-hello-world
1-routing
2-working-with-form-data
3-working-with-json
4-working-with-other-formats
5-using-a-database
6-serving-static-assets
7-logging
8-working-with-cookies
9-configuring-default-responses
+2 -2
examples/0-hello-world/gleam.toml
··· 6 6 [dependencies] 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 - gleam_erlang = "~> 0.22" 10 - mist = "~> 0.13" 9 + gleam_erlang = "~> 0.23" 10 + mist = "~> 0.14" 11 11 12 12 [dev-dependencies] 13 13 gleeunit = "~> 0.10"
+2
examples/1-routing/gleam.toml
··· 6 6 [dependencies] 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 + gleam_erlang = "~> 0.23" 10 + mist = "~> 0.14" 9 11 10 12 [dev-dependencies] 11 13 gleeunit = "~> 0.10"
+2
examples/2-working-with-form-data/gleam.toml
··· 6 6 [dependencies] 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 + gleam_erlang = "~> 0.23" 10 + mist = "~> 0.14" 9 11 10 12 [dev-dependencies] 11 13 gleeunit = "~> 0.10"
+2
examples/3-working-with-json/gleam.toml
··· 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 9 gleam_json = "~> 0.6" 10 + gleam_erlang = "~> 0.23" 11 + mist = "~> 0.14" 10 12 11 13 [dev-dependencies] 12 14 gleeunit = "~> 0.10"
+2
examples/4-working-with-other-formats/gleam.toml
··· 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 9 gsv = "~> 0.1" 10 + gleam_erlang = "~> 0.23" 11 + mist = "~> 0.14" 10 12 11 13 [dev-dependencies] 12 14 gleeunit = "~> 0.10"
+2
examples/5-using-a-database/gleam.toml
··· 8 8 wisp = { path = "../.." } 9 9 gleam_json = "~> 0.6" 10 10 tiny_database = { path = "../utilities/tiny_database" } 11 + gleam_erlang = "~> 0.23" 12 + mist = "~> 0.14" 11 13 12 14 [dev-dependencies] 13 15 gleeunit = "~> 0.10"
+2
examples/6-serving-static-assets/gleam.toml
··· 6 6 [dependencies] 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 + gleam_erlang = "~> 0.23" 10 + mist = "~> 0.14" 9 11 10 12 [dev-dependencies] 11 13 gleeunit = "~> 0.10"
+2
examples/7-logging/gleam.toml
··· 6 6 [dependencies] 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 + gleam_erlang = "~> 0.23" 10 + mist = "~> 0.14" 9 11 10 12 [dev-dependencies] 11 13 gleeunit = "~> 0.10"
+2
examples/8-working-with-cookies/gleam.toml
··· 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 9 gleam_crypto = "~> 0.4" 10 + gleam_erlang = "~> 0.23" 11 + mist = "~> 0.14" 10 12 11 13 [dev-dependencies] 12 14 gleeunit = "~> 0.10"
+2 -2
examples/9-configuring-default-responses/gleam.toml
··· 6 6 [dependencies] 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 - mist = "~> 0.13" 10 - gleam_erlang = "~> 0.22" 9 + mist = "~> 0.14" 10 + gleam_erlang = "~> 0.23" 11 11 12 12 [dev-dependencies] 13 13 gleeunit = "~> 0.10"