-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 1.05 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
[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 <sophie@wiox.me>", "Lucy <lucy@absolucy.moe>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/wilox/auxtools"
rust-version = "1.76"
version = "0.1.0"
[workspace.dependencies]
lazy_static = "1"
retour = { version = "=0.4.0-alpha.4", default-features = false }
dmasm = { git = "https://github.com/willox/dmasm" }
[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_const_for_fn = "warn"
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