31 lines
605 B
TOML
31 lines
605 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = ["crates/*"]
|
|
|
|
[workspace.package]
|
|
license = "AGPL-3.0-only"
|
|
license-file = "LICENSE.md"
|
|
authors = ["Cryoforge Nexus"]
|
|
edition = "2024"
|
|
version = "0.1.0"
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "warn"
|
|
missing_docs = "warn"
|
|
|
|
[workspace.lints.clippy]
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
print_stdout = "warn"
|
|
print_stderr = "warn"
|
|
|
|
pedantic = { level = "warn", priority = -1 }
|
|
clone_on_ref_ptr = "warn"
|
|
|
|
todo = "warn"
|
|
unimplemented = "warn"
|
|
|
|
# Pedantic exceptions (too noisy)
|
|
module_name_repetitions = "allow"
|
|
must_use_candidate = "allow"
|
|
missing_errors_doc = "allow" |