-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (70 loc) · 1.83 KB
/
Copy pathCargo.toml
File metadata and controls
83 lines (70 loc) · 1.83 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
[workspace]
resolver = "2"
members = [
"xtask",
"crates/sone-papdi-core",
"crates/sone-papdi-config",
"crates/sone-papdi-clipboard",
"crates/sone-papdi-api",
"crates/sone-papdi-wm",
"crates/sone-papdi-services",
"crates/sone-papdi-ui",
"crates/sone-papdi-daemon",
"crates/sone-papdi-bar",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["sone-papdi contributors"]
rust-version = "1.80"
[workspace.dependencies]
# Async
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] }
futures = "0.3"
# IPC / D-Bus
zbus = { version = "4", features = ["tokio"] }
zvariant = "4"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Storage
rusqlite = { version = "0.31", features = ["bundled"] }
# UI
gtk4 = { version = "0.9", features = ["v4_12"] }
gtk4-layer-shell = "0.8"
glib = "0.20"
# Wayland
wayland-client = "0.31"
wayland-protocols-wlr = { version = "0.3", features = ["client"] }
# Error handling
anyhow = "1"
thiserror = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Config & file watching
notify = "6"
freedesktop-desktop-entry = "0.8"
clap = { version = "4", features = ["derive"] }
# Misc
once_cell = "1"
parking_lot = "0.12"
bytes = "1"
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
dirs-next = "2"
expand-tilde = "0.1"
async-trait = "0.1"
libc = "0.2"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
panic = "abort"
strip = "symbols"
[profile.dev]
opt-level = 1
debug = 1