-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (62 loc) · 1.61 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (62 loc) · 1.61 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
[workspace]
resolver = "3"
members = [
"crates/pearlite-schema",
"crates/pearlite-state",
"crates/pearlite-diff",
"crates/pearlite-fs",
"crates/pearlite-nickel",
"crates/pearlite-pacman",
"crates/pearlite-cargo",
"crates/pearlite-systemd",
"crates/pearlite-snapper",
"crates/pearlite-userenv",
"crates/pearlite-engine",
"crates/pearlite-cli",
"crates/pearlite-audit",
]
[workspace.package]
version = "0.1.0"
authors = ["Mohamed Hammad <unbreakablemj@gmail.com>"]
edition = "2024"
rust-version = "1.85"
license = "GPL-3.0-or-later"
repository = "https://github.com/Steelbore/Pearlite"
homepage = "https://github.com/Steelbore/Pearlite"
readme = "README.md"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
toml_edit = "0.22"
thiserror = "2"
time = { version = "0.3", features = ["serde", "formatting", "parsing", "serde-well-known", "macros"] }
tracing = "0.1"
tracing-subscriber = "0.3"
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
schemars = "1"
sha2 = "0.10"
tempfile = "3"
rayon = "1"
uuid = { version = "1", features = ["v7", "serde"] }
nix = { version = "0.31", features = ["user", "fs"] }
hex = "0.4"
[workspace.lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
dbg_macro = "deny"
print_stdout = "deny"
print_stderr = "deny"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
strip = "symbols"
panic = "abort"