-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1015 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1015 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
34
35
36
37
38
39
40
41
[package]
name = "daemon-cli"
version = "0.10.0"
edition = "2024"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
async-trait = "0.1"
anyhow = "1.0"
tokio-util = { version = "0.7", features = ["codec"] }
futures = "0.3"
bytes = "1.0"
serde_json = "1.0"
scopeguard = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
parking_lot = "0.12"
terminal_size = "0.4"
supports-color = "3.0"
terminal-colorsaurus = "0.4"
interprocess = { version = "2.2", features = ["tokio"] }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.30.1", features = ["signal"] }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61.2", features = [
"Win32_Foundation",
"Win32_System_Threading",
] }
widestring = "1.0"
[[example]]
name = "cli"
path = "examples/cli.rs"
[dev-dependencies]
tokio-test = "0.4"
rand = "0.8"
cargo-husky = { version = "1", default-features = false, features = ["user-hooks"] }