forked from dbus2/busd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (58 loc) · 1.45 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "busd"
version = "0.3.1"
authors = ["Zeeshan Ali Khan <[email protected]>"]
description = "A D-Bus bus (broker) implementation"
edition = "2021"
license = "MIT"
readme = "README.md"
rust-version = "1.74"
repository = "https://github.com/dbus2/busd"
keywords = ["D-Bus", "DBus", "IPC"]
categories = ["network-programming"]
exclude = ["LICENSE"]
[lib]
name = "busd"
path = "src/lib.rs"
[[bin]]
name = "busd"
path = "src/bin/busd.rs"
[dependencies]
zbus = { git = "https://github.com/dbus2/zbus/", features = [
#zbus = { version = "4.2.0", features = [
"tokio",
"bus-impl",
], default-features = false }
tokio = { version = "1.37.0", features = [
"macros",
"rt-multi-thread",
"signal",
"tracing",
"fs",
] }
clap = { version = "4.5.4", features = ["derive"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"fmt",
"ansi",
], default-features = false, optional = true }
anyhow = "1.0.82"
# Explicitly depend on serde to enable `rc` feature.
serde = { version = "1.0.200", features = ["rc"] }
futures-util = "0.3.30"
enumflags2 = "0.7.9"
console-subscriber = { version = "0.4.0", optional = true }
hex = "0.4.3"
xdg-home = "1.1.0"
rand = "0.8.5"
event-listener = "5.3.0"
quick-xml = "0.36.2"
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29.0", features = ["user"] }
[features]
default = ["tracing-subscriber"]
[dev-dependencies]
ntest = "0.9.2"
[profile.release]
lto = "fat"