-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (38 loc) · 1.08 KB
/
Cargo.toml
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
[package]
name = "asyncdwmblocks"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-only"
[[bin]]
name = "asyncdwmblocks"
path = "src/bin/asyncdwmblocks.rs"
[[bin]]
name = "asyncdwmblocks-notify"
path = "src/bin/asyncdwmblocks_notify.rs"
required-features = ["ipc"]
[features]
ipc = ["async-trait"]
tcp = ["ipc", "tokio/net", "tokio/io-util"]
uds = ["ipc", "tokio/net", "tokio/io-util", "tokio/fs"]
config-file = ["tokio/fs", "serde", "serde_yaml"]
default = ["uds", "tcp", "config-file"]
[dependencies]
clap = { version = "3.0", default-features = false, features = ["std", "unicode"] }
futures = { version = "0.3", default-features = false, features = ["std"] }
indexmap = "1.8"
tokio = { version = "1.15", features = ["time", "sync", "process", "macros", "rt-multi-thread", "parking_lot", "signal"] }
x11-dl = "2.19"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.serde_yaml]
version = "0.8"
optional = true
[dev-dependencies]
chrono = "0.4"
pretty_assertions = "1.0"
rusty-fork = "0.3"