-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 896 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 896 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
[package]
name = "vite_task_graph"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[dependencies]
anyhow = { workspace = true }
clap = { workspace = true, features = ["derive"] }
monostate = "1.0.2"
petgraph = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["fs"] }
vec1 = { workspace = true, features = ["smallvec-v1"] }
vite_path = { workspace = true }
vite_str = { workspace = true }
vite_workspace = { workspace = true }
[dev-dependencies]
copy_dir = { workspace = true }
insta = { workspace = true, features = ["glob", "json"] }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["fs", "rt-multi-thread"] }
toml = { workspace = true }
[lints]
workspace = true