tangled
alpha
login
or
join now
keii.dev
/
wisp
3
fork
atom
🧚 A practical web framework for Gleam
3
fork
atom
overview
issues
pulls
pipelines
Update versions in examples
Louis Pilfold
2 years ago
8e28f751
17078a96
+11
-11
11 changed files
expand all
collapse all
unified
split
examples
00-hello-world
gleam.toml
01-routing
gleam.toml
02-working-with-form-data
gleam.toml
03-working-with-json
gleam.toml
04-working-with-other-formats
gleam.toml
05-using-a-database
gleam.toml
06-serving-static-assets
gleam.toml
07-logging
gleam.toml
08-working-with-cookies
gleam.toml
09-configuring-default-responses
gleam.toml
10-working-with-files
gleam.toml
+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
10
-
mist = ">= 1.2.0 and < 2.0.0"
10
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
10
-
mist = ">= 1.2.0 and < 2.0.0"
10
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
10
-
mist = ">= 1.2.0 and < 2.0.0"
10
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
11
-
mist = ">= 1.2.0 and < 2.0.0"
11
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
11
-
mist = ">= 1.2.0 and < 2.0.0"
11
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
12
-
mist = ">= 1.2.0 and < 2.0.0"
12
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
10
-
mist = ">= 1.2.0 and < 2.0.0"
10
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
10
-
mist = "~> 1.0"
10
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
11
-
mist = ">= 1.2.0 and < 2.0.0"
11
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
9
-
mist = "~> 1.0"
9
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
10
-
mist = ">= 1.2.0 and < 2.0.0"
10
10
+
mist = ">= 2.0.0 and < 3.0.0"
11
11
gleam_http = "~> 3.5"
12
12
13
13
[dev-dependencies]