-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1.04 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
[workspace]
members = [
"nmrs",
"nmrs-gui"
]
resolver = "3"
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://github.com/cachebag/nmrs"
[workspace.lints.rust]
unsafe_code = "forbid"
# This shouldn't apply to nmrs-gui
# missing_docs = "warn"
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.14.0"
zvariant = "5.10.0"
log = "0.4.29"
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.18"
uuid = { version = "1.22.0", features = ["v4", "v5"] }
futures = "0.3.32"
futures-timer = "3.0.3"
base64 = "0.22.1"
nmrs = { path = "nmrs", version = "2.2" }
gtk = { version = "0.11.1", package = "gtk4" }
glib = "0.22.3"
dirs = "6.0.0"
fs2 = "0.4.3"
anyhow = "1.0.102"
clap = { version = "4.6.0", features = ["derive"] }
async-trait = "0.1.89"
tokio = { version = "1.50.0", features = ["rt-multi-thread", "macros", "sync", "time"] }
tokio-util = { version = "0.7.18" }