-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 884 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 884 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
37
38
[workspace]
resolver = "2"
members = [
"crates/system-manager-engine",
"crates/system-manager",
]
[workspace.package]
version = "1.1.0"
edition = "2021"
license = "MIT"
authors = ["Ramses <ramses@well-founded.dev>"]
[workspace.dependencies]
anyhow = "1.0.68"
clap = { version = "4.1.4", features = ["derive"] }
dbus = "0.9.7"
env_logger = "0.11.0"
glob = "0.3.1"
im = { version = "15.1.0", features = ["serde"] }
itertools = "0.14.0"
log = "0.4.17"
nix = { version = "0.31.0", features = ["hostname", "user"] }
regex = "1.11.1"
rust-ini = { version = "0.21.3", features = ["inline-comment"] }
rpassword = "7.3.1"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
tempfile = "3"
thiserror = "2.0.0"
# Internal crates
system-manager-engine = { path = "crates/system-manager-engine" }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"