-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 903 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "nue"
description = "Node installer, made properly."
version = "0.0.0"
edition = "2021"
rust-version = "1.80.0"
[profile.release]
opt-level = "z"
strip = "debuginfo"
lto = "fat"
[dependencies]
anyhow = "1.0.90"
clap = { version = "4.5.20", features = ["derive"] }
dirs = "5.0.1"
indicatif = { version = "0.17.8", features = ["improved_unicode"] }
inquire = "0.7.5"
node-semver = { git = "https://github.com/felipesere/node-semver-rs" }
serde = { version = "1.0.210", features = ["derive"] }
ureq = { version = "2.10.1", features = ["json"] }
[patch."https://github.com/felipesere/node-semver-rs"]
node-semver = { git = "https://github.com/catuhana/node-semver-rs" }
[target.'cfg(unix)'.dependencies]
binstall-tar = "0.4.42"
liblzma = "0.3.4"
[target.'cfg(windows)'.dependencies]
# Let's pin its version because the GitHub
# source is not accessible anymore.
sevenz-rust = "=0.6.1"