gleam/compiler-cli/Cargo.toml
2021-10-30 22:06:56 +01:00

72 lines
1.8 KiB
TOML

[package]
name = "gleam"
version = "0.18.0-dev"
authors = ["Louis Pilfold <louis@lpil.uk>"]
edition = "2021"
license-file = "LICENCE"
[dependencies]
# The pure compiler
gleam-core = { path = "../compiler-core" }
# OS SIGINT and SIGTERM signal handling
ctrlc = { version = "3.1.7", features = ["termination"] }
# Command line interface
structopt = "0.3.21"
# # Immutable data structures
# im = "15.0.0"
# Extra iter methods
itertools = "0.10.0"
# Parsing
regex = "1.4.3"
# Colours in terminal
termcolor = "1.1.2"
# Initialize complex static values at runtime
lazy_static = "1.4.0"
# Data (de)serialisation
serde = { version = "1.0.119", features = ["derive"] }
# toml config file parsing
toml = "0.5.8"
# Recursively traversing directories
ignore = "0.4.17"
walkdir = "2.3.1"
# Enum trait impl macros
strum = { version = "0.20.0", features = ["derive"] }
# Check for tty
atty = "0.2.14"
# Hex package manager client
hexpm = { git = "https://github.com/gleam-lang/hexpm-rust" }
# Allow user to type in sensitive information without showing it in the shell
rpassword = "5.0.0"
# Async runtime
tokio = { version = "1.0.1", features = ["rt", "rt-multi-thread"] }
# Creation of tar file archives
tar = "0.4.30"
# gzip compression
flate2 = "1.0.19"
# Byte array data type
bytes = "1.0"
# Further file system functions (i.e. copy directory)
fs_extra = "1.2.0"
# Logging
tracing = "0.1.22"
tracing-subscriber = "0.2.15"
# HTTP client
reqwest = "0.11.4"
# Macro to work around Rust's traits not working with async. Sigh.
async-trait = "0.1.51"
# HTTP types
http = "0.2.5"
# Async combinators for futures
futures = "0.3.17"
# Little helper to omit fields that cannot be debug printed
debug-ignore = "1.0.1"
# Checksums
sha2 = "0.9"
# Getting hostname
hostname = "0.3"
# base encoding
base16 = "0.2"
[dev-dependencies]
# Test assertion errors with diffs
pretty_assertions = "0.7"