forked from dbus2/busd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (39 loc) · 1.29 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
[package]
name = "busd"
version = "0.1.0"
authors = ["Zeeshan Ali Khan <[email protected]>"]
description = "A simple D-Bus bus (broker) implementation"
edition = "2021"
license = "MIT"
readme = "README.md"
rust-version = "1.60"
repository = "https://github.com/zeenix/busd"
keywords = ["D-Bus", "DBus", "IPC"]
categories = ["network-programming"]
[lib]
name = "busd"
path = "src/lib.rs"
[[bin]]
name = "busd"
path = "src/bin/busd.rs"
[dependencies]
zbus = { git = "https://gitlab.freedesktop.org/dbus/zbus/", features = ["tokio"], default-features = false }
#zbus = { version = "3.4.0", features = ["tokio"], default-features = false }
nix = "0.25.0"
tokio = { version = "1.19.2", features = ["macros", "rt-multi-thread", "signal", "tracing", "fs" ] }
clap = { version = "4.0.18", features = ["derive"] }
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", features = ["env-filter" , "fmt", "ansi"], default-features = false, optional = true }
anyhow = "1.0.58"
# Explicitly depend on serde to enable `rc` feature.
serde = { version = "1.0.140", features = ["rc"] }
futures-util = "0.3.23"
parking_lot = "0.12.1"
enumflags2 = "0.7.0"
ntest = "0.9.0"
console-subscriber = { version = "0.1.8", optional = true }
hex = "0.4.3"
xdg-home = "1.0.0"
rand = "0.8.5"
[features]
default = ["tracing-subscriber"]