-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
43 lines (38 loc) · 1.21 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
[package]
name = "vite-plus-cli"
version = "0.0.0"
edition.workspace = true
[features]
rolldown = ["dep:rolldown_binding"]
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
clap = { workspace = true, features = ["derive"] }
cow-utils = { workspace = true }
fspy = { workspace = true }
rustc-hash = { workspace = true }
napi = { workspace = true }
napi-derive = { workspace = true }
petgraph = { workspace = true }
owo-colors = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["fs"] }
tracing = { workspace = true }
vite_command = { workspace = true }
vite_error = { workspace = true }
vite_install = { workspace = true }
vite_migration = { workspace = true }
vite_path = { workspace = true }
vite_shared = { workspace = true }
vite_static_config = { workspace = true }
vite_str = { workspace = true }
vite_task = { workspace = true }
vite_workspace = { workspace = true }
rolldown_binding = { workspace = true, optional = true, features = ["disable_panic_hook"] }
[build-dependencies]
napi-build = { workspace = true }
[dev-dependencies]
pretty_assertions = { workspace = true }
[lib]
crate-type = ["cdylib"]