Skip to content

Commit

Permalink
Update for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Dec 19, 2024
1 parent 211b128 commit 9a3abd7
Show file tree
Hide file tree
Showing 27 changed files with 65 additions and 60 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: erlef/setup-beam@v1
with:
otp-version: "27.0"
gleam-version: "1.4.0"
gleam-version: "1.6.2"
rebar3-version: "3"
# elixir-version: "1.14.2"
- run: gleam format --check src test
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.4.0 - 2024-12-19

- Updated for `mist` v5.0.0.

## v1.3.0 - 2024-11-21

- Updated for `gleam_stdlib` v0.43.0.
Expand Down
2 changes: 1 addition & 1 deletion examples/00-hello-world/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gleam = ">= 0.32.0"
gleam_stdlib = "~> 0.30"
wisp = { path = "../.." }
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
mist = ">= 4.0.0 and < 5.0.0"


[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/00-hello-world/test/app_test.gleam
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import app/router
import gleeunit
import gleeunit/should
import wisp/testing
import app/router

pub fn main() {
gleeunit.main()
Expand Down
2 changes: 1 addition & 1 deletion examples/01-routing/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gleam = ">= 0.32.0"
gleam_stdlib = "~> 0.30"
wisp = { path = "../.." }
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
mist = ">= 4.0.0 and < 5.0.0"
gleam_http = "~> 3.5"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/01-routing/test/app_test.gleam
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import app/router
import gleeunit
import gleeunit/should
import wisp/testing
import app/router

pub fn main() {
gleeunit.main()
Expand Down
2 changes: 1 addition & 1 deletion examples/02-working-with-form-data/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gleam = ">= 0.32.0"
gleam_stdlib = "~> 0.30"
wisp = { path = "../.." }
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
mist = ">= 4.0.0 and < 5.0.0"
gleam_http = "~> 3.5"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions examples/02-working-with-form-data/test/app_test.gleam
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import app/router
import gleam/string
import gleeunit
import gleeunit/should
import gleam/string
import wisp/testing
import app/router

pub fn main() {
gleeunit.main()
Expand Down
10 changes: 5 additions & 5 deletions examples/03-working-with-json/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ description = "A Wisp example"
gleam = ">= 0.32.0"

[dependencies]
gleam_stdlib = "~> 0.30"
gleam_stdlib = ">= 0.30.0 and < 2.0.0"
wisp = { path = "../.." }
gleam_json = "~> 0.6"
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
gleam_http = "~> 3.5"
gleam_json = ">= 2.0.0 and < 3.0.0"
gleam_erlang = ">= 0.23.0 and < 2.0.0"
mist = ">= 4.0.0 and < 5.0.0"
gleam_http = ">= 3.5.0 and < 4.0.0"

[dev-dependencies]
gleeunit = "~> 1.0"
2 changes: 1 addition & 1 deletion examples/03-working-with-json/src/app/router.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub fn handle_request(req: Request) -> Response {
#("is-cool", json.bool(person.is_cool)),
#("saved", json.bool(True)),
])
Ok(json.to_string_builder(object))
Ok(json.to_string_tree(object))
}

// An appropriate response is returned depending on whether the JSON could be
Expand Down
10 changes: 5 additions & 5 deletions examples/04-working-with-other-formats/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ description = "A Wisp example"
gleam = ">= 0.32.0"

[dependencies]
gleam_stdlib = "~> 0.30"
gleam_stdlib = ">= 0.30.0 and < 2.0.0"
wisp = { path = "../.." }
gsv = "~> 1.0"
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
gleam_http = "~> 3.5"
gsv = ">= 3.0.0 and < 4.0.0"
gleam_erlang = ">= 0.23.0 and < 2.0.0"
mist = ">= 4.0.0 and < 5.0.0"
gleam_http = ">= 3.5.0 and < 4.0.0"

[dev-dependencies]
gleeunit = "~> 1.0"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import app/web
import gleam/int
import gleam/http.{Post}
import gleam/int
import gleam/list
import gleam/result
import gleam/string
Expand Down
10 changes: 5 additions & 5 deletions examples/05-using-a-database/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ description = "A Wisp example"
gleam = ">= 0.32.0"

[dependencies]
gleam_stdlib = "~> 0.30"
gleam_stdlib = ">= 0.30.0 and < 2.0.0"
wisp = { path = "../.." }
gleam_json = "~> 0.6"
gleam_json = ">= 2.0.0 and < 3.0.0"
tiny_database = { path = "../utilities/tiny_database" }
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
gleam_http = "~> 3.5"
gleam_erlang = ">= 0.23.0 and < 2.0.0"
mist = ">= 4.0.0 and < 5.0.0"
gleam_http = ">= 3.0.0 and < 4.0.0"

[dev-dependencies]
gleeunit = "~> 1.0"
2 changes: 1 addition & 1 deletion examples/05-using-a-database/src/app/web.gleam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import wisp
import tiny_database
import wisp

// A new Context type, which holds any additional data that the request handlers
// need in addition to the request.
Expand Down
6 changes: 3 additions & 3 deletions examples/05-using-a-database/src/app/web/people.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub fn list_people(ctx: Context) -> Response {

// Convert the ids into a JSON array of objects.
Ok(
json.to_string_builder(
json.to_string_tree(
json.object([
#(
"people",
Expand Down Expand Up @@ -75,7 +75,7 @@ pub fn create_person(req: Request, ctx: Context) -> Response {
use id <- try(save_to_database(ctx.db, person))

// Construct a JSON payload with the id of the newly created person.
Ok(json.to_string_builder(json.object([#("id", json.string(id))])))
Ok(json.to_string_tree(json.object([#("id", json.string(id))])))
}

// Return an appropriate response depending on whether everything went well or
Expand All @@ -93,7 +93,7 @@ pub fn read_person(ctx: Context, id: String) -> Response {

// Construct a JSON payload with the person's details.
Ok(
json.to_string_builder(
json.to_string_tree(
json.object([
#("id", json.string(id)),
#("name", json.string(person.name)),
Expand Down
2 changes: 1 addition & 1 deletion examples/06-serving-static-assets/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gleam = ">= 0.32.0"
gleam_stdlib = "~> 0.30"
wisp = { path = "../.." }
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
mist = ">= 4.0.0 and < 5.0.0"
gleam_http = "~> 3.5"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/07-logging/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gleam = ">= 0.32.0"
gleam_stdlib = "~> 0.30"
wisp = { path = "../.." }
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
mist = ">= 4.0.0 and < 5.0.0"

[dev-dependencies]
gleeunit = "~> 1.0"
2 changes: 1 addition & 1 deletion examples/07-logging/src/app/router.gleam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import wisp.{type Request, type Response}
import app/web
import wisp.{type Request, type Response}

// Wisp has functions for logging messages using the BEAM logger.
//
Expand Down
2 changes: 1 addition & 1 deletion examples/07-logging/test/app_test.gleam
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import app/router
import gleeunit
import gleeunit/should
import wisp/testing
import app/router

pub fn main() {
gleeunit.main()
Expand Down
2 changes: 1 addition & 1 deletion examples/08-working-with-cookies/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gleam_stdlib = "~> 0.30"
wisp = { path = "../.." }
gleam_crypto = "~> 1.0"
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
mist = ">= 4.0.0 and < 5.0.0"
gleam_http = "~> 3.5"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/09-configuring-default-responses/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gleam = ">= 0.32.0"
[dependencies]
gleam_stdlib = "~> 0.30"
wisp = { path = "../.." }
mist = ">= 2.0.0 and < 3.0.0"
mist = ">= 4.0.0 and < 5.0.0"
gleam_erlang = "~> 0.23"

[dev-dependencies]
Expand Down
9 changes: 6 additions & 3 deletions examples/09-configuring-default-responses/test/app_test.gleam
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import app/router
import gleam/string
import gleeunit
import gleeunit/should
import gleam/string
import wisp/testing
import app/router

pub fn main() {
gleeunit.main()
Expand Down Expand Up @@ -76,7 +76,10 @@ pub fn method_not_allowed_test() {
|> should.equal(405)

response.headers
|> should.equal([#("allow", ""), #("content-type", "text/html; charset=utf-8")])
|> should.equal([
#("allow", ""),
#("content-type", "text/html; charset=utf-8"),
])

let assert True =
response
Expand Down
2 changes: 1 addition & 1 deletion examples/10-working-with-files/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gleam = ">= 0.32.0"
gleam_stdlib = "~> 0.30"
wisp = { path = "../.." }
gleam_erlang = "~> 0.23"
mist = ">= 2.0.0 and < 3.0.0"
mist = ">= 4.0.0 and < 5.0.0"
gleam_http = "~> 3.5"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions examples/10-working-with-files/test/app_test.gleam
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import app/router
import gleam/string
import gleeunit
import gleeunit/should
import gleam/string
import wisp/testing
import app/router

pub fn main() {
gleeunit.main()
Expand Down
2 changes: 1 addition & 1 deletion examples/utilities/tiny_database/gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gleam = ">= 0.32.0"
[dependencies]
gleam_stdlib = "~> 0.30"
simplifile = "~> 2.0"
gleam_json = "~> 0.6"
gleam_json = ">= 2.0.0 and < 3.0.0"
youid = ">= 1.1.0 and < 2.0.0"

[dev-dependencies]
Expand Down
19 changes: 9 additions & 10 deletions examples/utilities/tiny_database/manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@
# You typically do not need to edit this file

packages = [
{ name = "filepath", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "filepath", source = "hex", outer_checksum = "EFB6FF65C98B2A16378ABC3EE2B14124168C0CE5201553DE652E2644DCFDB594" },
{ name = "gleam_crypto", version = "1.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_crypto", source = "hex", outer_checksum = "ADD058DEDE8F0341F1ADE3AAC492A224F15700829D9A3A3F9ADF370F875C51B7" },
{ name = "gleam_erlang", version = "0.25.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "054D571A7092D2A9727B3E5D183B7507DAB0DA41556EC9133606F09C15497373" },
{ name = "gleam_json", version = "0.7.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "thoas"], otp_app = "gleam_json", source = "hex", outer_checksum = "CB405BD93A8828BCD870463DE29375E7B2D252D9D124C109E5B618AAC00B86FC" },
{ name = "gleam_stdlib", version = "0.38.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "663CF11861179AF415A625307447775C09404E752FF99A24E2057C835319F1BE" },
{ name = "gleeunit", version = "1.1.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "72CDC3D3F719478F26C4E2C5FED3E657AC81EC14A47D2D2DEBB8693CA3220C3B" },
{ name = "simplifile", version = "2.0.0", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "95219227A43FCFE62C6E494F413A1D56FF953B68FE420698612E3D89A1EFE029" },
{ name = "thoas", version = "0.4.1", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "4918D50026C073C4AB1388437132C77A6F6F7C8AC43C60C13758CC0ADCE2134E" },
{ name = "youid", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_crypto", "gleam_erlang", "gleam_stdlib"], otp_app = "youid", source = "hex", outer_checksum = "15BF3E8173C8741930E23D22071CD55AE203B6E43B9E0C6C9E7D9F116808E418" },
{ name = "filepath", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "filepath", source = "hex", outer_checksum = "67A6D15FB39EEB69DD31F8C145BB5A421790581BD6AA14B33D64D5A55DBD6587" },
{ name = "gleam_crypto", version = "1.4.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_crypto", source = "hex", outer_checksum = "8AE56026B3E05EBB1F076778478A762E9EB62B31AEEB4285755452F397029D22" },
{ name = "gleam_erlang", version = "0.33.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "A1D26B80F01901B59AABEE3475DD4C18D27D58FA5C897D922FCB9B099749C064" },
{ name = "gleam_json", version = "2.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "0A57FB5666E695FD2BEE74C0428A98B0FC11A395D2C7B4CDF5E22C5DD32C74C6" },
{ name = "gleam_stdlib", version = "0.48.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "6C7799F315EB3AC53271078685297579183A287F2E65C6DD36C6583C76F12BBE" },
{ name = "gleeunit", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "F7A7228925D3EE7D0813C922E062BFD6D7E9310F0BEE585D3A42F3307E3CFD13" },
{ name = "simplifile", version = "2.2.0", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "0DFABEF7DC7A9E2FF4BB27B108034E60C81BEBFCB7AB816B9E7E18ED4503ACD8" },
{ name = "youid", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_crypto", "gleam_erlang", "gleam_stdlib"], otp_app = "youid", source = "hex", outer_checksum = "EF0F693004E221155EE5909C6D3C945DD14F7117DBA882887CF5F45BE399B8CA" },
]

[requirements]
gleam_json = { version = "~> 0.6" }
gleam_json = { version = ">= 2.0.0 and < 3.0.0" }
gleam_stdlib = { version = "~> 0.30" }
gleeunit = { version = "~> 1.0" }
simplifile = { version = "~> 2.0" }
Expand Down
15 changes: 7 additions & 8 deletions manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,25 @@
# You typically do not need to edit this file

packages = [
{ name = "birl", version = "1.7.1", build_tools = ["gleam"], requirements = ["gleam_stdlib", "ranger"], otp_app = "birl", source = "hex", outer_checksum = "5C66647D62BCB11FE327E7A6024907C4A17954EF22865FE0940B54A852446D01" },
{ name = "directories", version = "1.1.0", build_tools = ["gleam"], requirements = ["envoy", "gleam_stdlib", "platform", "simplifile"], otp_app = "directories", source = "hex", outer_checksum = "BDA521A4EB9EE3A7894F0DC863797878E91FF5C7826F7084B2E731E208BDB076" },
{ name = "envoy", version = "1.0.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "envoy", source = "hex", outer_checksum = "95FD059345AA982E89A0B6E2A3BF1CF43E17A7048DCD85B5B65D3B9E4E39D359" },
{ name = "exception", version = "2.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "exception", source = "hex", outer_checksum = "F5580D584F16A20B7FCDCABF9E9BE9A2C1F6AC4F9176FA6DD0B63E3B20D450AA" },
{ name = "filepath", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "filepath", source = "hex", outer_checksum = "67A6D15FB39EEB69DD31F8C145BB5A421790581BD6AA14B33D64D5A55DBD6587" },
{ name = "gleam_crypto", version = "1.4.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_crypto", source = "hex", outer_checksum = "8AE56026B3E05EBB1F076778478A762E9EB62B31AEEB4285755452F397029D22" },
{ name = "gleam_erlang", version = "0.30.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "760618870AE4A497B10C73548E6E44F43B76292A54F0207B3771CBB599C675B4" },
{ name = "gleam_http", version = "3.7.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_http", source = "hex", outer_checksum = "A9EE0722106FCCAB8AD3BF9D0A3EFF92BFE8561D59B83BAE96EB0BE1938D4E0F" },
{ name = "gleam_erlang", version = "0.33.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "A1D26B80F01901B59AABEE3475DD4C18D27D58FA5C897D922FCB9B099749C064" },
{ name = "gleam_http", version = "3.7.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_http", source = "hex", outer_checksum = "8A70D2F70BB7CFEB5DF048A2183FFBA91AF6D4CF5798504841744A16999E33D2" },
{ name = "gleam_json", version = "2.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "0A57FB5666E695FD2BEE74C0428A98B0FC11A395D2C7B4CDF5E22C5DD32C74C6" },
{ name = "gleam_otp", version = "0.16.0", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_stdlib"], otp_app = "gleam_otp", source = "hex", outer_checksum = "FA0EB761339749B4E82D63016C6A18C4E6662DA05BAB6F1346F9AF2E679E301A" },
{ name = "gleam_stdlib", version = "0.43.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "69EF22E78FDCA9097CBE7DF91C05B2A8B5436826D9F66680D879182C0860A747" },
{ name = "gleam_stdlib", version = "0.48.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "6C7799F315EB3AC53271078685297579183A287F2E65C6DD36C6583C76F12BBE" },
{ name = "gleam_yielder", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_yielder", source = "hex", outer_checksum = "8E4E4ECFA7982859F430C57F549200C7749823C106759F4A19A78AEA6687717A" },
{ name = "gleeunit", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "F7A7228925D3EE7D0813C922E062BFD6D7E9310F0BEE585D3A42F3307E3CFD13" },
{ name = "glisten", version = "6.0.0", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_otp", "gleam_stdlib", "logging", "telemetry"], otp_app = "glisten", source = "hex", outer_checksum = "912132751031473CB38F454120124FFC96AF6B0EA33D92C9C90DB16327A2A972" },
{ name = "gramps", version = "2.0.3", build_tools = ["gleam"], requirements = ["gleam_crypto", "gleam_erlang", "gleam_http", "gleam_stdlib"], otp_app = "gramps", source = "hex", outer_checksum = "3CCAA6E081225180D95C79679D383BBF51C8D1FDC1B84DA1DA444F628C373793" },
{ name = "glisten", version = "7.0.0", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_otp", "gleam_stdlib", "logging", "telemetry"], otp_app = "glisten", source = "hex", outer_checksum = "028C0882EAC7ABEDEFBE92CE4D1FEDADE95FA81B1B1AB099C4F91C133BEF2C42" },
{ name = "gramps", version = "3.0.0", build_tools = ["gleam"], requirements = ["gleam_crypto", "gleam_erlang", "gleam_http", "gleam_stdlib"], otp_app = "gramps", source = "hex", outer_checksum = "630BDE35E465511945253A06EBCDE8D5E4B8B1988F4AC6B8FAC297DEF55B4CA2" },
{ name = "hpack_erl", version = "0.3.0", build_tools = ["rebar3"], requirements = [], otp_app = "hpack", source = "hex", outer_checksum = "D6137D7079169D8C485C6962DFE261AF5B9EF60FBC557344511C1E65E3D95FB0" },
{ name = "logging", version = "1.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "logging", source = "hex", outer_checksum = "1098FBF10B54B44C2C7FDF0B01C1253CAFACDACABEFB4B0D027803246753E06D" },
{ name = "marceau", version = "1.3.0", build_tools = ["gleam"], requirements = [], otp_app = "marceau", source = "hex", outer_checksum = "2D1C27504BEF45005F5DFB18591F8610FB4BFA91744878210BDC464412EC44E9" },
{ name = "mist", version = "3.0.0", build_tools = ["gleam"], requirements = ["birl", "gleam_erlang", "gleam_http", "gleam_otp", "gleam_stdlib", "glisten", "gramps", "hpack_erl", "logging"], otp_app = "mist", source = "hex", outer_checksum = "CDA1A74E768419235E16886463EC4722EFF4AB3F8D820A76EAD45D7C167D7282" },
{ name = "mist", version = "4.0.2", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_http", "gleam_otp", "gleam_stdlib", "gleam_yielder", "glisten", "gramps", "hpack_erl", "logging"], otp_app = "mist", source = "hex", outer_checksum = "588873C523FABE8379DB113DA9EF72749932CF9409626C551CE5E9DD2841E3F9" },
{ name = "platform", version = "1.0.0", build_tools = ["gleam"], requirements = [], otp_app = "platform", source = "hex", outer_checksum = "8339420A95AD89AAC0F82F4C3DB8DD401041742D6C3F46132A8739F6AEB75391" },
{ name = "ranger", version = "1.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "ranger", source = "hex", outer_checksum = "B8F3AFF23A3A5B5D9526B8D18E7C43A7DFD3902B151B97EC65397FE29192B695" },
{ name = "simplifile", version = "2.2.0", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "0DFABEF7DC7A9E2FF4BB27B108034E60C81BEBFCB7AB816B9E7E18ED4503ACD8" },
{ name = "telemetry", version = "1.3.0", build_tools = ["rebar3"], requirements = [], otp_app = "telemetry", source = "hex", outer_checksum = "7015FC8919DBE63764F4B4B87A95B7C0996BD539E0D499BE6EC9D7F3875B79E6" },
]
Expand Down

0 comments on commit 9a3abd7

Please sign in to comment.