Current section

Files

Jump to
graded gleam.toml
Raw

gleam.toml

name = "graded"
version = "0.11.0"
# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
description = "Effect checking for Gleam"
licences = ["Apache-2.0"]
repository = { type = "github", user = "alvivi", repo = "graded" }
links = [{ title = "Documentation", href = "https://hexdocs.pm/graded" }]
included_files = [
"src",
"priv",
"gleam.toml",
"manifest.toml",
"README.md",
"CHANGELOG.md",
"docs",
"LICENSE",
]
# For a full reference of all the available options, you can have a look at
# https://gleam.run/writing-gleam/gleam-toml/.
[documentation]
pages = [
{ title = "Reference", path = "reference.html", source = "./docs/REFERENCE.md" },
{ title = "Limitations", path = "limitations.html", source = "./docs/LIMITATIONS.md" },
{ title = "Theory", path = "theory.html", source = "./docs/THEORY.md" },
{ title = "Changelog", path = "changelog.html", source = "./CHANGELOG.md" },
]
[dependencies]
gleam_stdlib = ">= 0.44.0 and < 2.0.0"
glance = ">= 6.0.0 and < 8.0.0"
girard = ">= 2.0.0 and < 3.0.0"
simplifile = ">= 2.0.0 and < 3.0.0"
argv = ">= 1.0.0 and < 2.0.0"
filepath = ">= 1.1.2 and < 2.0.0"
tom = ">= 2.0.2 and < 3.0.0"
[dev_dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"
# TODO: restore glinter (>= 2.11.1 and < 3.0.0) once it allows glance 7.x;
# it currently pins glance < 7.0.0, which conflicts with girard 2.0.0.
qcheck = ">= 1.0.0 and < 2.0.0"
[tools.glinter]
warnings_as_errors = true
[tools.glinter.rules]
unused_exports = "off"
label_possible = "off"
thrown_away_error = "off"
error_context_lost = "off"