🧚 A practical web framework for Gleam

Update versions in examples

Changed files
+11 -11
examples
00-hello-world
01-routing
02-working-with-form-data
03-working-with-json
04-working-with-other-formats
05-using-a-database
06-serving-static-assets
07-logging
08-working-with-cookies
09-configuring-default-responses
10-working-with-files
+1 -1
examples/00-hello-world/gleam.toml
··· 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 9 gleam_erlang = "~> 0.23" 10 - mist = ">= 1.2.0 and < 2.0.0" 10 + mist = ">= 2.0.0 and < 3.0.0" 11 11 12 12 13 13 [dev-dependencies]
+1 -1
examples/01-routing/gleam.toml
··· 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 9 gleam_erlang = "~> 0.23" 10 - mist = ">= 1.2.0 and < 2.0.0" 10 + mist = ">= 2.0.0 and < 3.0.0" 11 11 gleam_http = "~> 3.5" 12 12 13 13 [dev-dependencies]
+1 -1
examples/02-working-with-form-data/gleam.toml
··· 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 9 gleam_erlang = "~> 0.23" 10 - mist = ">= 1.2.0 and < 2.0.0" 10 + mist = ">= 2.0.0 and < 3.0.0" 11 11 gleam_http = "~> 3.5" 12 12 13 13 [dev-dependencies]
+1 -1
examples/03-working-with-json/gleam.toml
··· 8 8 wisp = { path = "../.." } 9 9 gleam_json = "~> 0.6" 10 10 gleam_erlang = "~> 0.23" 11 - mist = ">= 1.2.0 and < 2.0.0" 11 + mist = ">= 2.0.0 and < 3.0.0" 12 12 gleam_http = "~> 3.5" 13 13 14 14 [dev-dependencies]
+1 -1
examples/04-working-with-other-formats/gleam.toml
··· 8 8 wisp = { path = "../.." } 9 9 gsv = "~> 1.0" 10 10 gleam_erlang = "~> 0.23" 11 - mist = ">= 1.2.0 and < 2.0.0" 11 + mist = ">= 2.0.0 and < 3.0.0" 12 12 gleam_http = "~> 3.5" 13 13 14 14 [dev-dependencies]
+1 -1
examples/05-using-a-database/gleam.toml
··· 9 9 gleam_json = "~> 0.6" 10 10 tiny_database = { path = "../utilities/tiny_database" } 11 11 gleam_erlang = "~> 0.23" 12 - mist = ">= 1.2.0 and < 2.0.0" 12 + mist = ">= 2.0.0 and < 3.0.0" 13 13 gleam_http = "~> 3.5" 14 14 15 15 [dev-dependencies]
+1 -1
examples/06-serving-static-assets/gleam.toml
··· 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 9 gleam_erlang = "~> 0.23" 10 - mist = ">= 1.2.0 and < 2.0.0" 10 + mist = ">= 2.0.0 and < 3.0.0" 11 11 gleam_http = "~> 3.5" 12 12 13 13 [dev-dependencies]
+1 -1
examples/07-logging/gleam.toml
··· 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 9 gleam_erlang = "~> 0.23" 10 - mist = "~> 1.0" 10 + mist = ">= 2.0.0 and < 3.0.0" 11 11 12 12 [dev-dependencies] 13 13 gleeunit = "~> 1.0"
+1 -1
examples/08-working-with-cookies/gleam.toml
··· 8 8 wisp = { path = "../.." } 9 9 gleam_crypto = "~> 1.0" 10 10 gleam_erlang = "~> 0.23" 11 - mist = ">= 1.2.0 and < 2.0.0" 11 + mist = ">= 2.0.0 and < 3.0.0" 12 12 gleam_http = "~> 3.5" 13 13 14 14 [dev-dependencies]
+1 -1
examples/09-configuring-default-responses/gleam.toml
··· 6 6 [dependencies] 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 - mist = "~> 1.0" 9 + mist = ">= 2.0.0 and < 3.0.0" 10 10 gleam_erlang = "~> 0.23" 11 11 12 12 [dev-dependencies]
+1 -1
examples/10-working-with-files/gleam.toml
··· 7 7 gleam_stdlib = "~> 0.30" 8 8 wisp = { path = "../.." } 9 9 gleam_erlang = "~> 0.23" 10 - mist = ">= 1.2.0 and < 2.0.0" 10 + mist = ">= 2.0.0 and < 3.0.0" 11 11 gleam_http = "~> 3.5" 12 12 13 13 [dev-dependencies]