forked from freedesktop-rs/nmrs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 810 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (30 loc) · 810 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
[workspace]
members = [
"nmrs"
]
resolver = "3"
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://github.com/freedesktop-rs/nmrs"
[workspace.lints.rust]
unused = { level = "warn", priority = -1 }
[workspace.lints.clippy]
# Allow some common patterns
too_many_arguments = "allow"
type_complexity = "allow"
[workspace.dependencies]
# Core dependencies
zbus = "5.16.0"
zvariant = "5.12.0"
log = "0.4.33"
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.18"
uuid = { version = "1.23.4", features = ["v4", "v5"] }
futures = "0.3.32"
futures-timer = "3.0.4"
base64 = "0.22.1"
nmrs = { path = "nmrs", version = "3.0" }
async-trait = "0.1.89"
bitflags = "2.13.0"
tokio = { version = "1.52.3", features = ["rt-multi-thread", "macros", "sync", "time", "process"] }