-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 965 Bytes
/
Cargo.toml
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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
authors = ["Lucy <lucy@absolucy.moe>"]
edition = "2021"
license = "MPL-2.0"
publish = false
repository = "https://github.com/Absolucy/aneri"
rust-version = "1.81"
version = "0.1.0"
[workspace.dependencies]
ahash = "0.8"
meowtonin = { git = "https://github.com/Absolucy/meowtonin" }
meowtonin-serde = { git = "https://github.com/Absolucy/meowtonin" }
faster-hex = "0.10"
parking_lot = "0.12"
slotmap = "1"
[workspace.lints.clippy]
# presets
complexity = "warn"
correctness = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"
# individual lints
assigning_clones = "warn"
create_dir = "warn"
default_trait_access = "warn"
inefficient_to_string = "warn"
redundant_type_annotations = "warn"
self_named_module_files = "warn"
str_to_string = "warn"
string_to_string = "warn"
[profile.release]
debug = "full"
lto = "thin"
split-debuginfo = "packed"
[profile.dev]
debug = "full"
opt-level = 0