-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 740 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 740 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
[workspace]
resolver = "3"
members = [
"bp_ort", "bspeater", "octbots", "r2mole", "ranim", "shared", "serialized_io",
]
[workspace.dependencies]
# rrplug = { path = "../rrplug" }
shared = { path = "shared" }
rrplug = { git = "https://github.com/catornot/rrplug.git" }
rustc_version = "0.4.1"
windows-sys = { version = "0.48.0", features = ["Win32_System_LibraryLoader", "Win32_Foundation", "Win32_System_Console", "Win32_System_Diagnostics_Debug", "Win32_System_Threading"] }
itertools = "0.14.*"
# for crates that deal with ub a lot
[profile.release-debug]
inherits = "dev"
debug = true
opt-level = 3
[profile.dev.package."*"]
opt-level = 2
[profile.distribution]
inherits = "release"
strip = true
lto = "thin"
codegen-units = 1