-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (52 loc) · 1.1 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "noti"
authors = [ "noti-rs" ]
version = "0.1.0"
edition = "2021"
# Focus on min size of bin
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1
panic = "abort"
debug = "none"
debug-assertions = false
[[bin]]
path = "crates/app/main.rs"
name = "noti"
[workspace]
members = [
"crates/config",
"crates/backend",
"crates/client",
"crates/dbus",
"crates/macros",
"crates/render",
"crates/filetype",
"crates/shared"
]
[workspace.package]
authors = [ "noti-rs" ]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0.86"
tokio = { version = "1.38.0", features = ["full"] }
log = "0.4.22"
zbus = "4.4.0"
derive_more = { version = "1.0.0", features = ["display"] }
humantime = "2.1.0"
config.path = "crates/config"
render.path = "crates/render"
dbus.path = "crates/dbus"
shared.path = "crates/shared"
macros.path = "crates/macros"
[dependencies]
config.workspace = true
backend.path = "crates/backend"
client.path = "crates/client"
anyhow.workspace = true
tokio.workspace = true
clap = { version = "4.5.7", features = ["derive"] }
env_logger = "0.11.5"