Current section
Files
Jump to
Current section
Files
gleam.toml
name = "rally"
version = "2.0.1"
description = "A web framework for building server-rendered Lustre apps in Gleam."
licences = ["MIT"]
target = "erlang"
internal_modules = [
"rally",
"rally/internal",
"rally/internal/*",
"rally/runtime/internal",
"rally/runtime/internal/*",
"rally/runtime/codec",
"rally/runtime/jobs",
"rally/runtime/ssr",
"rally/runtime/topics",
"rally/runtime/wire",
]
repository = { type = "github", user = "pairshaped", repo = "rally-gleam" }
links = [
{ title = "llms.txt", href = "https://raw.githubusercontent.com/pairshaped/rally-gleam/refs/heads/master/llms.txt" },
]
[[documentation.pages]]
title = "Pages"
path = "guides/pages.html"
source = "./pages/guides/pages.md"
[[documentation.pages]]
title = "Server Messaging"
path = "guides/server-messaging.html"
source = "./pages/guides/server-messaging.md"
[[documentation.pages]]
title = "Runtime"
path = "guides/runtime.html"
source = "./pages/guides/runtime.md"
[[documentation.pages]]
title = "Configuration"
path = "guides/configuration.html"
source = "./pages/guides/configuration.md"
[[documentation.pages]]
title = "Comparisons"
path = "reference/comparisons.html"
source = "./pages/reference/comparisons.md"
[[documentation.pages]]
title = "Internals"
path = "reference/internals.html"
source = "./pages/reference/internals.md"
[dependencies]
argv = ">= 1.0.0 and < 2.0.0"
gleam_stdlib = ">= 0.60.0 and < 2.0.0"
glance = "~> 6.0"
glexer = ">= 2.0.0 and < 3.0.0"
libero = ">= 7.0.0 and < 8.0.0"
lustre = ">= 5.7.0 and < 6.0.0"
marmot = ">= 1.7.2 and < 2.0.0"
proute = ">= 1.0.0-rc.0 and < 2.0.0"
simplifile = ">= 2.0.0 and < 3.0.0"
sqlight = ">= 1.0.0 and < 2.0.0"
tom = ">= 2.1.0 and < 3.0.0"
gleam_erlang = ">= 1.3.0 and < 2.0.0"
gleam_otp = ">= 1.0.0 and < 2.0.0"
gleam_time = ">= 1.7.0 and < 2.0.0"
gleam_crypto = ">= 1.6.0 and < 2.0.0"
gleam_regexp = ">= 1.1.0 and < 2.0.0"
envoy = ">= 1.2.0 and < 2.0.0"
justin = ">= 1.1.0 and < 2.0.0"
logging = ">= 1.0.0 and < 2.0.0"
gleam_http = ">= 4.3.0 and < 5.0.0"
mist = ">= 6.0.3 and < 7.0.0"
modem = ">= 2.1.3 and < 3.0.0"
[dev-dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"
birdie = ">= 2.0.0 and < 3.0.0"
glinter = ">= 2.19.0 and < 3.0.0"
[tools.glinter]
stats = true
warnings_as_errors = false
exclude = ["tmp/**"]
[tools.glinter.ignore]
"src/rally/runtime/*.gleam" = ["unused_exports"]
"src/rally/runtime/internal/*.gleam" = ["unused_exports"]
"src/**/*.gleam" = [
"deep_nesting",
"label_possible",
"stringly_typed_error",
]