-
Notifications
You must be signed in to change notification settings - Fork 329
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (56 loc) · 1.81 KB
/
Cargo.toml
File metadata and controls
59 lines (56 loc) · 1.81 KB
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
54
55
56
57
58
59
[package]
name = "volta-core"
version = "0.1.0"
authors = ["David Herman <david.herman@gmail.com>"]
edition = "2021"
[features]
mock-network = ["mockito"]
# The `cross-platform-docs` feature flag is used for generating API docs for
# multiple platforms in one build.
# See ci/publish-docs.yml for an example of how it's enabled.
# See volta-core::path for an example of where it's used.
cross-platform-docs = []
[dependencies]
terminal_size = "0.4.0"
indicatif = "0.17.9"
console = ">=0.11.3, <1.0.0"
readext = "0.1.0"
serde_json = { version = "1.0.133", features = ["preserve_order"] }
serde = { version = "1.0.215", features = ["derive"] }
archive = { path = "../archive" }
node-semver = "2"
cmdline_words_parser = "0.2.1"
fs-utils = { path = "../fs-utils" }
cfg-if = "1.0"
tempfile = "3.14.0"
os_info = "3.9.0"
detect-indent = "0.1"
envoy = "0.1.3"
mockito = { version = "0.31.1", optional = true }
regex = "1.11.1"
dirs = "5.0.1"
# We manually configure the feature list here because 0.4.16 includes the
# `oldtime` feature by default to avoid a breaking change. Additionally, using
# the feature list explicitly lets us drop the `wasmbind` feature, which we do
# not need.
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "std", "clock"] }
validate-npm-package-name = { path = "../validate-npm-package-name" }
textwrap = "0.16.1"
log = { version = "0.4", features = ["std"] }
ctrlc = "3.4.5"
walkdir = "2.5.0"
volta-layout = { path = "../volta-layout" }
once_cell = "1.19.0"
dunce = "1.0.5"
ci_info = "0.14.14"
httpdate = "1"
headers = "0.4"
attohttpc = { version = "0.28", default-features = false, features = ["json", "compress", "tls-rustls-native-roots"] }
chain-map = "0.1.0"
indexmap = "2.6.0"
retry = "2"
fs2 = "0.4.3"
which = "7.0.0"
[target.'cfg(windows)'.dependencies]
winreg = "0.52.0"
junction = "1.2.0"