this repo has no description
at wasm 67 lines 1.9 kB view raw
1[package] 2name = "gleam-cli" 3version = "1.13.0-rc1" 4authors = ["Louis Pilfold <louis@lpil.uk>"] 5edition = "2024" 6license-file = "LICENCE" 7 8[dependencies] 9# The pure compiler 10gleam-core = { path = "../compiler-core" } 11# OS SIGINT and SIGTERM signal handling 12ctrlc = { version = "3", features = ["termination"] } 13# Command line interface 14clap = { version = "4", features = ["derive"] } 15# Recursively traversing directories 16ignore = "0" 17# Allow user to type in sensitive information without showing it in the shell 18rpassword = "7" 19# Async runtime 20tokio = { version = "1", features = ["rt", "rt-multi-thread"] } 21# Further file system functions (i.e. copy directory) 22fs_extra = "1" 23tracing-subscriber = { version = "0.3.20", features = ["fmt", "env-filter"] } 24# HTTP client 25reqwest = { version = "0", default-features = false, features = ["rustls-tls"] } 26# Checksums 27sha2 = "0" 28# Getting hostname 29hostname = "0" 30# TOML parser/editor that preserves comments & formatting 31toml_edit = "0" 32# File locking 33fslock = "0" 34# Provides a way to determine if two files are the same using filesystem node ids 35same-file = "1" 36# Open generated docs in browser 37opener = "0" 38# Pubgrub dependency resolution algorithm 39pubgrub = "0.3" 40 41camino = { workspace = true, features = ["serde1"] } 42async-trait.workspace = true 43base16.workspace = true 44debug-ignore.workspace = true 45ecow.workspace = true 46flate2.workspace = true 47futures.workspace = true 48hexpm.workspace = true 49http.workspace = true 50im.workspace = true 51itertools.workspace = true 52lsp-server.workspace = true 53lsp-types.workspace = true 54regex.workspace = true 55serde.workspace = true 56serde_json.workspace = true 57strum.workspace = true 58tar.workspace = true 59termcolor.workspace = true 60toml.workspace = true 61tracing.workspace = true 62 63[dev-dependencies] 64# Creation of temporary directories 65tempfile = "3" 66pretty_assertions.workspace = true 67insta.workspace = true