veloren/Cargo.toml

79 lines
2.1 KiB
TOML
Raw Normal View History

2019-11-20 15:30:33 +00:00
cargo-features = ["named-profiles","profile-overrides"]
2019-01-02 17:23:31 +00:00
[workspace]
members = [
"common",
"client",
"chat-cli",
2019-01-02 17:23:31 +00:00
"server",
"server-cli",
"voxygen",
2019-01-15 15:13:11 +00:00
"world",
"network",
2020-06-17 07:49:14 +00:00
"voxygen/src/anim"
2019-01-02 17:23:31 +00:00
]
2019-11-20 15:30:33 +00:00
# default profile for devs, fast to compile, okay enough to run, no debug information
2019-01-02 17:23:31 +00:00
[profile.dev]
opt-level = 2
overflow-checks = true
2019-11-20 15:30:33 +00:00
debug-assertions = true
panic = "abort"
2020-04-17 23:29:01 +00:00
debug = false
2019-11-20 15:30:33 +00:00
codegen-units = 8
lto = false
incremental = true
# All dependencies (but not this crate itself)
[profile.dev.package."*"]
2019-11-20 15:30:33 +00:00
opt-level = 3
[profile.dev.package."veloren_network"]
opt-level = 2
[profile.dev.package."veloren-common"]
2019-11-20 15:30:33 +00:00
opt-level = 2
[profile.dev.package."veloren-client"]
2019-11-20 15:30:33 +00:00
opt-level = 2
[profile.dev.package."veloren-chat-cli"]
2019-11-20 15:30:33 +00:00
opt-level = 2
[profile.dev.package."veloren-server"]
2019-11-20 15:30:33 +00:00
opt-level = 2
[profile.dev.package."veloren-server-cli"]
2019-11-20 15:30:33 +00:00
opt-level = 2
[profile.dev.package."veloren-voxygen"]
2019-11-20 15:30:33 +00:00
opt-level = 2
[profile.dev.package."veloren-world"]
2019-11-20 15:30:33 +00:00
opt-level = 2
2020-01-20 16:16:41 +00:00
[profile.no_overflow.package."veloren-world"]
opt-level = 3
2019-01-02 17:23:31 +00:00
2019-11-20 15:30:33 +00:00
# this profile is used by developers if dev doesn't has enough debug information, the name must != debug, as debug is used by dev because....
[profile.debuginfo]
inherits= 'dev'
debug = true
# used to perform things that do a *lot* of math (i.e. worldgen) but still need reasonable compilation time. Ideally this would also
# add -C target-cpu=native, but I don't think you can set this by profile currently.
[profile.no_overflow]
inherits= 'dev'
overflow-checks = false
debug-assertions = false
# this profile is used for veloren releases, compile time doesn't matter
2019-11-20 15:30:33 +00:00
# we need stacktraces, light debug information, as much checks as possible
# I would like to put it in a seperate `official_release` target, but that doesnt share caches with `cargo test` and `cargo bench`
2019-01-02 17:23:31 +00:00
[profile.release]
2019-11-20 15:30:33 +00:00
opt-level = 3
overflow-checks = false
2019-11-20 15:30:33 +00:00
debug-assertions = false
lto = true
2019-11-20 15:30:33 +00:00
debug = false
2020-01-18 21:58:15 +00:00
# this profile is used by developers for release profiling
[profile.releasedebuginfo]
inherits = 'release'
debug = 1
# cpal conflict fix isn't released yet
[patch.crates-io]
winit = { git = "https://github.com/Imberflur/winit.git", branch = "macos-test" }