You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nenv/Cargo.toml

32 lines
776 B
TOML

[package]
name = "nenv"
version = "0.1.0"
edition = "2021"
[lib]
name = "nenv"
[[bin]]
name = "nenv"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.1.1", features = ["derive"] }
color-eyre = "0.6.2"
dirs = "4.0.0"
futures-util = "0.3.25"
indicatif = "0.17.3"
lazy_static = "1.4.0"
miette = "5.5.0"
reqwest = { version = "0.11.14", features = ["json", "stream"] }
semver = { version = "1.0.16", features = ["std", "serde"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
thiserror = "1.0.38"
tokio = { version = "1.24.2", features = ["rt", "macros", "tracing", "net", "fs", "time"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.16"