馃 A practical web framework for Gleam
1name = "wisp" 2version = "1.0.0" 3gleam = ">= 0.32.0" 4description = "A practical web framework for Gleam" 5licences = ["Apache-2.0"] 6 7repository = { type = "github", user = "gleam-wisp", repo = "wisp" } 8links = [{ title = "Sponsor", href = "https://github.com/sponsors/lpil" }] 9 10[dependencies] 11exception = ">= 2.0.0 and < 3.0.0" 12gleam_crypto = ">= 1.0.0 and < 2.0.0" 13gleam_erlang = ">= 0.21.0 and < 2.0.0" 14gleam_http = ">= 3.5.0 and < 4.0.0" 15gleam_json = ">= 0.6.0 and < 2.0.0" 16gleam_stdlib = ">= 0.29.0 and < 2.0.0" 17mist = ">= 1.2.0 and < 3.0.0" 18simplifile = ">= 2.0.0 and < 3.0.0" 19marceau = ">= 1.1.0 and < 2.0.0" 20logging = ">= 1.2.0 and < 2.0.0" 21directories = ">= 1.0.0 and < 2.0.0" 22 23[dev-dependencies] 24gleeunit = "~> 1.0"