[package] name = "nenv" version = "0.5.2" authors = ["trivernis "] edition = "2021" license = "GPL-3.0" description = "A low permission nodejs environment manager." readme = "README.md" repository = "https://github.com/Trivernis/nenv" keywords = ["nodejs", "tools"] categories = ["command-line-utilities", "development-tools"] [[bin]] name = "nenv" path = "src/main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = "0.1.62" bincode = "1.3.3" clap = { version = "4.1.1", features = ["derive"] } crossterm = "0.25.0" dialoguer = "0.10.3" dirs = "4.0.0" envmnt = "0.10.4" futures = "0.3.25" futures-util = "0.3.25" indicatif = "0.17.3" lazy_static = "1.4.0" libflate = "1.2.0" miette = { version = "5.5.0", features = ["fancy"] } 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" tar = "0.4.38" thiserror = "1.0.38" tokio = { version = "1.24.2", features = ["rt", "macros", "tracing", "net", "fs", "time", "process"] } toml = "0.5.11" tracing = "0.1.37" tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } xkcd_unreachable = "0.1.1" zip = "0.6.3" # generated by 'cargo dist init' [profile.dist] inherits = "release" debug = true split-debuginfo = "packed"