Merge pull request #32 from nixops4/avoid-workspace-references
Dereference workspace lints for nix-cargo-integration compatibility
This commit is contained in:
commit
edf4d62a08
5 changed files with 40 additions and 10 deletions
|
|
@ -17,5 +17,11 @@ ctor = "0.2"
|
||||||
tempfile = "3.10"
|
tempfile = "3.10"
|
||||||
cstr = "0.2"
|
cstr = "0.2"
|
||||||
|
|
||||||
[lints]
|
[lints.rust]
|
||||||
workspace = true
|
warnings = "deny"
|
||||||
|
dead-code = "allow"
|
||||||
|
|
||||||
|
[lints.clippy]
|
||||||
|
type-complexity = "allow"
|
||||||
|
# We're still trying to make Nix more thread-safe, want forward-compat
|
||||||
|
arc-with-non-send-sync = "allow"
|
||||||
|
|
|
||||||
|
|
@ -16,5 +16,11 @@ ctor = "0.2"
|
||||||
tempfile = "3.10"
|
tempfile = "3.10"
|
||||||
cstr = "0.2"
|
cstr = "0.2"
|
||||||
|
|
||||||
[lints]
|
[lints.rust]
|
||||||
workspace = true
|
warnings = "deny"
|
||||||
|
dead-code = "allow"
|
||||||
|
|
||||||
|
[lints.clippy]
|
||||||
|
type-complexity = "allow"
|
||||||
|
# We're still trying to make Nix more thread-safe, want forward-compat
|
||||||
|
arc-with-non-send-sync = "allow"
|
||||||
|
|
|
||||||
|
|
@ -19,5 +19,11 @@ ctor = "0.2"
|
||||||
tempfile = "3.10"
|
tempfile = "3.10"
|
||||||
cstr = "0.2"
|
cstr = "0.2"
|
||||||
|
|
||||||
[lints]
|
[lints.rust]
|
||||||
workspace = true
|
warnings = "deny"
|
||||||
|
dead-code = "allow"
|
||||||
|
|
||||||
|
[lints.clippy]
|
||||||
|
type-complexity = "allow"
|
||||||
|
# We're still trying to make Nix more thread-safe, want forward-compat
|
||||||
|
arc-with-non-send-sync = "allow"
|
||||||
|
|
|
||||||
|
|
@ -23,5 +23,11 @@ pkg-config = "0.3"
|
||||||
# Needed for version parsing in build.rs
|
# Needed for version parsing in build.rs
|
||||||
nix-bindings-util = { path = "../nix-bindings-util" }
|
nix-bindings-util = { path = "../nix-bindings-util" }
|
||||||
|
|
||||||
[lints]
|
[lints.rust]
|
||||||
workspace = true
|
warnings = "deny"
|
||||||
|
dead-code = "allow"
|
||||||
|
|
||||||
|
[lints.clippy]
|
||||||
|
type-complexity = "allow"
|
||||||
|
# We're still trying to make Nix more thread-safe, want forward-compat
|
||||||
|
arc-with-non-send-sync = "allow"
|
||||||
|
|
|
||||||
|
|
@ -12,5 +12,11 @@ anyhow = "1.0"
|
||||||
nix-bindings-bindgen-raw = { path = "../nix-bindings-bindgen-raw" }
|
nix-bindings-bindgen-raw = { path = "../nix-bindings-bindgen-raw" }
|
||||||
ctor = "0.2"
|
ctor = "0.2"
|
||||||
|
|
||||||
[lints]
|
[lints.rust]
|
||||||
workspace = true
|
warnings = "deny"
|
||||||
|
dead-code = "allow"
|
||||||
|
|
||||||
|
[lints.clippy]
|
||||||
|
type-complexity = "allow"
|
||||||
|
# We're still trying to make Nix more thread-safe, want forward-compat
|
||||||
|
arc-with-non-send-sync = "allow"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue