-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathCargo.toml
35 lines (30 loc) · 981 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
[workspace]
members = ["auxcov", "auxtools", "auxtools-impl", "debug_server", "instruction_hooking", "tests/auxtest", "tests/byond_get", "tests/test_runner"]
resolver = "2"
[workspace.package]
authors = ["Sophie Wallace <[email protected]>", "Lucy <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/wilox/auxtools"
rust-version = "1.76"
version = "0.1.0"
[workspace.dependencies]
lazy_static = "1"
detour = { version = "0.8", default-features = false }
[workspace.lints.rust]
static_mut_refs = "allow"
[workspace.lints.clippy]
complexity = { level = "warn", priority = -1 }
correctness = { level = "warn", priority = -1 }
perf = { level = "warn", priority = -1 }
style = { level = "warn", priority = -1 }
suspicious = { level = "warn", priority = -1 }
missing_safety_doc = "allow"
missing_transmute_annotations = "allow"
type_complexity = "allow"
[profile.release]
opt-level = 3
lto = 'thin'
codegen-units = 1
incremental = true
debug = true