19 lines
422 B
TOML
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"
|