|
|
|
[package]
|
|
|
|
name = "fnm"
|
|
|
|
version = "1.36.0"
|
|
|
|
authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
|
|
|
|
edition = "2021"
|
|
|
|
build = "build.rs"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
repository = "https://github.com/Schniz/fnm"
|
|
|
|
description = "Fast and simple Node.js version manager"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0.166", features = ["derive"] }
|
|
|
|
clap = { version = "4.3.10", features = ["derive", "env"] }
|
|
|
|
serde_json = "1.0.100"
|
|
|
|
chrono = { version = "0.4.38", features = ["serde", "now"], default-features = false }
|
|
|
|
tar = "0.4.38"
|
|
|
|
xz2 = "0.1.7"
|
|
|
|
node-semver = "2.1.0"
|
|
|
|
dirs = "5.0.1"
|
|
|
|
colored = "2.0.4"
|
|
|
|
zip = "0.6.6"
|
|
|
|
tempfile = "3.6.0"
|
|
|
|
indoc = "2.0.2"
|
|
|
|
log = "0.4.19"
|
|
|
|
env_logger = "0.10.0"
|
|
|
|
encoding_rs_io = "0.1.7"
|
|
|
|
reqwest = { version = "0.11.18", features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots", "brotli"], default-features = false }
|
|
|
|
url = "2.4.0"
|
|
|
|
sysinfo = "0.29.3"
|
|
|
|
thiserror = "1.0.44"
|
|
|
|
clap_complete = "4.3.1"
|
|
|
|
anyhow = "1.0.71"
|
|
|
|
indicatif = { version = "0.17.8", features = ["improved_unicode"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "1.4.0"
|
|
|
|
duct = "0.13.6"
|
|
|
|
test-log = "0.2.12"
|
|
|
|
http = "0.2.9"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
embed-resource = "1.8.0"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
csv = "1.2.2"
|
|
|
|
junction = "1.0.0"
|
|
|
|
|
|
|
|
[features]
|