-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
53 lines (48 loc) · 1.63 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
[package]
name = "vite_package_manager"
version = "0.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
publish = false
rust-version.workspace = true
[dependencies]
anyhow = { workspace = true }
backon = { workspace = true }
directories = { workspace = true }
flate2 = { workspace = true }
futures-util = { workspace = true }
hex = { workspace = true }
indoc = { workspace = true }
pathdiff = { workspace = true }
petgraph = { workspace = true, features = ["serde-1"] }
rustc-hash = { workspace = true }
semver = { workspace = true }
serde = { workspace = true, features = ["derive"] }
# use `preserve_order` feature to preserve the order of the fields in `package.json`
serde_json = { workspace = true, features = ["preserve_order"] }
serde_yml = { workspace = true }
sha1 = { workspace = true }
sha2 = { workspace = true }
tar = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
vite_error = { workspace = true }
vite_glob = { workspace = true }
vite_path = { workspace = true }
vite_str = { workspace = true }
wax = { workspace = true }
[target.'cfg(target_os = "windows")'.dependencies]
reqwest = { workspace = true, features = ["stream", "native-tls-vendored", "json"] }
[target.'cfg(not(target_os = "windows"))'.dependencies]
reqwest = { workspace = true, features = ["stream", "rustls-tls", "json"] }
nix = { workspace = true }
[dev-dependencies]
httpmock = { workspace = true }
tempfile = { workspace = true }
test-log = { workspace = true }
tokio-test = { workspace = true }
[lints]
workspace = true