forked from volta-cli/volta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.17 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 = "volta"
version = "1.1.0"
authors = ["David Herman <[email protected]>", "Charles Pierce <[email protected]>"]
license = "BSD-2-Clause"
repository = "https://github.com/volta-cli/volta"
edition = "2018"
[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"
[dependencies]
atty = "0.2"
volta-core = { path = "crates/volta-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.85"
lazy_static = "1.3.0"
log = { version = "0.4", features = ["std"] }
semver = { git = "https://github.com/mikrostew/semver", branch = "new-parser" }
structopt = "0.2.14"
cfg-if = "1.0"
mockito = { version = "0.31.0", optional = true }
test-support = { path = "crates/test-support" }
textwrap = "0.14.2"
which = "4.3.0"
dirs = "4.0.0"
volta-migrate = { path = "crates/volta-migrate" }
[target.'cfg(windows)'.dependencies]
winreg = "0.10.1"
[dev-dependencies]
hamcrest2 = "0.3.0"
envoy = "0.1.3"
ci_info = "0.14.6"
hyperx = "1.4.0"
[workspace]