-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 994 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 994 Bytes
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
[package]
name = "vite_error"
version = "0.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
publish = false
rust-version.workspace = true
[dependencies]
anyhow = { workspace = true }
ast-grep-config = { workspace = true }
bincode = { workspace = true }
bstr = { workspace = true }
ignore = { workspace = true }
nix = { workspace = true }
rusqlite = { workspace = true }
semver = { workspace = true }
serde_json = { workspace = true }
serde_yml = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
vite_path = { workspace = true }
vite_str = { workspace = true }
vite_task = { workspace = true }
vite_workspace = { 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"] }