forked from z-galaxy/zbus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
119 lines (113 loc) · 3.3 KB
/
Cargo.toml
File metadata and controls
119 lines (113 loc) · 3.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[workspace]
members = [
"zbus",
"zvariant",
"zbus_names",
"zvariant_derive",
"zvariant_utils",
"zbus_macros",
"zbus_xml",
"zbus_xmlgen",
]
resolver = "3"
[workspace.lints.rust]
# This optional cfg flag is used by tokio code to set task name
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }
[workspace.package]
edition = "2024"
rust-version = "1.87"
license = "MIT"
repository = "https://github.com/z-galaxy/zbus/"
[profile.bench]
debug = true
strip = "none"
[workspace.dependencies]
# Local dependencies
zvariant_derive = { path = "./zvariant_derive" }
zvariant_utils = { path = "./zvariant_utils" }
zvariant = { path = "./zvariant", default-features = false }
zbus_names = { path = "./zbus_names" }
zbus_macros = { path = "./zbus_macros" }
zbus_xml = { path = "./zbus_xml" }
zbus = { path = "./zbus" }
# 3rd party
snakecase = "0.1.0"
pretty_assertions = "1.4"
clap = { version = "4.5.4", features = ["derive", "wrap_help"] }
endi = "1.1.0"
arrayvec = { version = "0.7.4", features = ["serde"] }
uuid = { version = "1.8.0", features = ["serde"] }
url = { version = "2.5.0", features = ["serde"] }
time = { version = "0.3.36", features = ["serde"] }
chrono = { version = "0.4.38", features = ["serde"], default-features = false }
heapless = { version = "0.9.0", features = ["serde"] }
camino = "1.1.9"
fastrand = "2.3.0"
enumflags2 = { version = "0.7.9", features = ["serde"] }
async-io = "2.3.2"
async-broadcast = "0.7.0"
async-lock = "3.3.0"
async-executor = "1.11.0"
async-trait = "0.1.80"
hex = "0.4.3"
ordered-stream = "0.2"
futures-util = { version = "0.3.31", default-features = false }
futures-core = "0.3.30"
futures-lite = { version = "2.6.0", default-features = false, features = [
"std",
] }
quick-xml = { version = "0.39", features = ["serialize", "overlapped-lists"] }
event-listener = "5.3.0"
xdg-home = "1.1.0"
tracing = "0.1.40"
blocking = "1.6.0"
async-task = "4.7.1"
async-fs = "2.1.2"
async-process = "2.2.2"
tokio = "1.37.0"
vsock = "0.5.0"
tokio-vsock = "0.7"
ntest = "0.9.2"
test-log = { version = "0.2.16", features = [
"trace",
], default-features = false }
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"fmt",
"ansi",
], default-features = false }
tempfile = "3.10.1"
serde = { version = "1.0.200", features = ["derive"] }
serde_repr = "0.1.19"
serde_bytes = "0.11.14"
serde_json = "1.0.116"
criterion = { version = "4.0.4", package = "codspeed-criterion-compat" }
doc-comment = "0.3.3"
proc-macro2 = "1.0.81"
proc-macro-crate = "3.2.0"
syn = { version = "2.0.64", features = ["extra-traits", "full"] }
quote = "1.0.36"
static_assertions = "1.1.0"
async-recursion = "1.1.1"
winnow = "0.7"
uds_windows = "1.1.0"
rustix = { version = "1.1.2", default-features = false, features = [
"net",
"process",
"std",
] }
# FIXME: Remove when rustix provides the needed API. See `FIXME` comments in
# `zbus::connection::socket::unix` module.
libc = { version = "0.2", default-features = false }
windows-sys = { version = "0.61", features = [
"Win32_Foundation",
"Win32_Security_Authorization",
"Win32_System_Memory",
"Win32_System_WindowsProgramming",
"Win32_Networking",
"Win32_Networking_WinSock",
"Win32_NetworkManagement",
"Win32_NetworkManagement_IpHelper",
"Win32_System_IO",
"Win32_System_Threading",
] }