Packages

Functions Related to the Collatz/Syracuse/3n+1 Problem

Retired package: Publishing test, not a different version to 0.0.1

Current section

Files

Jump to
collatz gleam.toml
Raw

gleam.toml

name = "collatz"
version = "0.0.2"
licences = ["Apache-2.0"]
description = "Functions Related to the Collatz/Syracuse/3n+1 Problem"
repository = { type = "github", user = "Skenvy", repo = "Collatz" }
links = [
{ title = "README", href = "https://github.com/Skenvy/Collatz/blob/main/README.md" },
{ title = "Source", href = "https://github.com/Skenvy/Collatz/tree/main/gleam" },
{ title = "GitHub Pages", href = "https://skenvy.github.io/Collatz/gleam/" },
{ title = "Issues", href = "https://github.com/Skenvy/Collatz/issues" },
{ title = "Bug Report", href = "https://github.com/Skenvy/Collatz/issues/new?assignees=&labels=bug&projects=&template=bug-report.yaml" },
{ title = "Feature Request", href = "https://github.com/Skenvy/Collatz/issues/new?assignees=&labels=enhancement&projects=&template=feature-request.yaml" },
{ title = "Security Vulnerability", href = "https://github.com/Skenvy/Collatz/issues/new?assignees=&labels=security&projects=&template=security-vulnerability.yaml" },
]
gleam = ">= 1.0.0"
target = "erlang"
internal_modules = [
"collatz/internal",
"collatz/internal/*",
]
[dependencies]
gleam_stdlib = "~> 0.34 or ~> 1.0"
envoy = "~> 1.0"
argv = "~> 1.0"
[dev-dependencies]
gleeunit = "~> 1.0"
gleescript = "~> 1.0"
[documentation]
pages = [
{ title = "README", path = "readme.html", source = "./README.md" },
{ title = "DEVLOG", path = "devlog.html", source = "./devlog.md" },
]
[erlang]
# application_start_module = ""
# extra_applications = []
[javascript]
typescript_declarations = true
runtime = "node"
################################################################################
################## https://gleam.run/writing-gleam/gleam-toml/ #################
################################################################################