Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ members = [
"libs/opsqueue_python",
]


[workspace.lints.clippy]
cargo = { level = "warn", priority = -1 }
cargo_common_metadata = "allow"
Expand All @@ -25,6 +24,16 @@ restriction = { level = "allow", priority = -1 }
style = { level = "warn", priority = -1 }
suspicious = { level = "warn", priority = -1 }

# Explicitly selected `restriction` lints
mod_module_files = "warn"

# Use `trace!`, `info!`, `warn!`, `error!` from `tracing` instead
dbg_macro = "warn"
print_stdout = "warn"
print_stderr = "warn"

rc_mutex = "warn"

[profile.release]
# Full fat LTO makes a big difference in performance, at the cost of a large
# compile time hit. You should only use release builds when performance matters.
Expand Down
Loading