Files
nil/Cargo.toml
oxalica c41880b7c2 Do not force fat LTO and let packager decide
Or it is too slow to compile and test under release profile.
2025-06-28 16:07:23 -04:00

36 lines
630 B
TOML

[workspace]
resolver = "2"
members = [
"crates/builtin",
"crates/ide",
"crates/nil",
"crates/nix-interop",
"crates/ssr",
"crates/syntax",
]
[workspace.package]
version = "0.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# Should be sync with CI and README.
rust-version = "1.77"
[profile.dev]
debug = 1
[profile.bench]
debug = 1
[workspace.lints.clippy]
dbg-macro = "warn"
todo = "warn"
doc-markdown = "warn"
manual-let-else = "warn"
semicolon-if-nothing-returned = "warn"
uninlined-format-args = "warn"
# WAIT: https://github.com/rust-lang/rust-clippy/issues/11436
missing-panics-doc = "allow"