Current section

Files

Jump to
sprocket gleam.toml
Raw

gleam.toml

name = "sprocket"
version = "0.1.0"
description = "A framework for building real-time server components in Gleam"
# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
#
licences = ["MIT"]
repository = { type = "github", user = "eliknebel", repo = "sprocket" }
links = [{ title = "Website", href = "https://sprocket.live" }]
# Modules that should be considered "internal" and will not be included in
# generated documentation. Note this currently only affects documentation;
# public types and functions defined in these modules are still public.
#
# Items in this list are "globs" that are matched against module names. See:
# https://docs.rs/glob/latest/glob/struct.Pattern.html
internal_modules = [
"docs",
"docs/*",
"sprocket/internal/*",
]
[dependencies]
gleam_stdlib = "~> 0.28"
gleam_http = "~> 3.2"
mist = "~> 0.11"
gleam_erlang = "~> 0.18"
gleam_json = "~> 0.5"
gleam_crypto = "~> 0.3"
[dev-dependencies]
gleeunit = "~> 0.10"