-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 775 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (26 loc) · 775 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
[workspace]
resolver = "3"
members = ["dryice", "benchmarks", "dryice-python", "dryice-node"]
[workspace.package]
version = "0.4.0"
authors = ["Nicholas Minor <nicholasrminor@gmail.com>"]
edition = "2024"
license = "MIT"
repository = "https://github.com/nrminor/dryice"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
perf = { level = "warn", priority = -1 }
style = { level = "warn", priority = -1 }
complexity = { level = "warn", priority = -1 }
correctness = { level = "warn", priority = -1 }
unwrap_used = "deny"
[workspace.dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[profile.dev]
incremental = true
lto = false
[profile.release]
lto = true
codegen-units = 1
strip = true