-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
49 lines (42 loc) · 1.02 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "snm"
version = "0.8.0"
description = "Smol and simple node version manager"
authors = ["Vikas Raj <[email protected]>"]
edition = "2018"
homepage = "https://github.com/numToStr/snm/"
repository = "https://github.com/numToStr/snm/"
license-file = "LICENSE"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "snm_core"
path = "src/lib/mod.rs"
[[bin]]
name = "snm"
[dependencies]
anyhow = "1.0.52"
clap = "3.0.0-beta.5"
clap_generate = "3.0.0-beta.5"
console = "0.15.0"
dirs-next = "2.0.0"
indicatif = "0.16.2"
indoc = "1.0.3"
semver = "1.0.4"
serde = { version = "1.0.132", features = ["derive"] }
serde_json = "1.0.73"
tempfile = "3.2.0"
ureq = { version = "2.3.1", features = ["json"] }
url = "2.2.2"
[dev-dependencies]
lazy_static = "1.4.0"
[target.'cfg(unix)'.dependencies]
xz2 = "0.1.6"
tar = "0.4.38"
[target.'cfg(windows)'.dependencies]
zip = "0.5.13"
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
panic = "abort"