-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 717 Bytes
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 717 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
39
[package]
name = "rustcodex"
version = "0.0.0"
edition = "2021"
license = "GPL-3.0-or-later"
build = "build.rs"
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(generated)']
[lints.clippy]
correctness = "deny"
suspicious = "deny"
perf = "deny"
style = "deny"
complexity = "warn"
nursery = "warn"
#pedantic = "warn"
[dependencies]
anyhow = "1.0"
base64 = "0.22"
clap = { version = "4.5", features = ["cargo", "derive", "env", "string"] }
flate2 = "1.0"
[build-dependencies]
clap_complete = "4.5"
clap = { version = "4.5", features = ["cargo", "derive", "env", "string"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.small]
inherits = "release"
opt-level = "z"
strip = true