-
Notifications
You must be signed in to change notification settings - Fork 233
/
Cargo.toml
53 lines (45 loc) · 1.22 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
50
51
52
53
[package]
name = "volta"
version = "2.0.1"
authors = ["David Herman <[email protected]>", "Charles Pierce <[email protected]>"]
license = "BSD-2-Clause"
repository = "https://github.com/volta-cli/volta"
edition = "2021"
[features]
cross-platform-docs = ["volta-core/cross-platform-docs"]
mock-network = ["mockito", "volta-core/mock-network"]
volta-dev = []
smoke-tests = []
[[bin]]
name = "volta-shim"
path = "src/volta-shim.rs"
[[bin]]
name = "volta-migrate"
path = "src/volta-migrate.rs"
[profile.release]
lto = "fat"
codegen-units = 1
[dependencies]
volta-core = { path = "crates/volta-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.132"
once_cell = "1.19.0"
log = { version = "0.4", features = ["std"] }
node-semver = "2"
clap = { version = "4.5.20", features = ["color", "derive", "wrap_help"] }
clap_complete = "4.5.35"
mockito = { version = "0.31.1", optional = true }
textwrap = "0.16.1"
which = "6.0.3"
dirs = "5.0.1"
volta-migrate = { path = "crates/volta-migrate" }
[target.'cfg(windows)'.dependencies]
winreg = "0.52.0"
[dev-dependencies]
hamcrest2 = "0.3.0"
envoy = "0.1.3"
ci_info = "0.14.14"
headers = "0.4"
cfg-if = "1.0"
test-support = { path = "crates/test-support" }
[workspace]