nixide/Cargo.toml
John Ericson 351a206776 Fix clippy and track in CI
`flake check` will run clippy.
2025-12-15 19:48:45 -05:00

19 lines
422 B
TOML

[workspace]
members = [
"nix-bindings-bindgen-raw",
"nix-bindings-expr",
"nix-bindings-fetchers",
"nix-bindings-flake",
"nix-bindings-store",
"nix-bindings-util",
]
resolver = "2"
[workspace.lints.rust]
warnings = "deny"
dead-code = "allow"
[workspace.lints.clippy]
type-complexity = "allow"
# We're still trying to make Nix more thread-safe, want forward-compat
arc-with-non-send-sync = "allow"