-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 982 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (33 loc) · 982 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
36
[workspace]
resolver = "3"
members = [
"enwiro",
"enwiro-gui",
"enwiro-adapter-i3wm",
"enwiro-adapter-tmux",
"enwiro-bridge-activitywatch",
"enwiro-bridge-rofi",
"enwiro-cookbook-chezmoi",
"enwiro-cookbook-git",
"enwiro-cookbook-github",
"enwiro-cookbook-obsidian",
"enwiro-daemon",
"enwiro-garnish-just",
"enwiro-garnish-submodules",
"enwiro-sdk",
]
[workspace.package]
repository = "https://github.com/kantord/enwiro"
[workspace.dependencies]
enwiro-sdk = { path = "enwiro-sdk", version = "0.12.0" }
enwiro-daemon = { path = "enwiro-daemon", version = "0.0.22" }
home = "0.5.9"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = "0.3"
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*