-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
57 lines (50 loc) · 1.45 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
[package]
name = "vite_task_bin"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[[bin]]
name = "vt"
path = "src/main.rs"
[[bin]]
name = "vtt"
path = "src/vtt/main.rs"
[dependencies]
anyhow = { workspace = true }
ctrlc = { workspace = true }
libc = { workspace = true }
notify = { workspace = true }
pty_terminal_test_client = { workspace = true, features = ["testing"] }
async-trait = { workspace = true }
clap = { workspace = true, features = ["derive"] }
jsonc-parser = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["full"] }
vite_path = { workspace = true }
vite_str = { workspace = true }
vite_task = { workspace = true }
which = { workspace = true }
[dev-dependencies]
cow-utils = { workspace = true }
cp_r = { workspace = true }
insta = { workspace = true, features = ["glob", "json", "redactions", "filters", "ron"] }
pty_terminal = { workspace = true }
pty_terminal_test = { workspace = true }
regex = { workspace = true }
serde = { workspace = true, features = ["derive", "rc"] }
shell-escape = { workspace = true }
tempfile = { workspace = true }
toml = { workspace = true }
vec1 = { workspace = true, features = ["serde"] }
vite_path = { workspace = true, features = ["absolute-redaction"] }
vite_workspace = { workspace = true }
[lints]
workspace = true
[[test]]
name = "e2e_snapshots"
harness = false
[lib]
test = false
doctest = false