2024-02-16 09:59:51 +01:00
|
|
|
[package]
|
2025-10-04 02:44:22 +02:00
|
|
|
name = "nix-bindings-util"
|
2026-01-13 17:53:44 +01:00
|
|
|
version = "0.2.1"
|
2024-02-16 09:59:51 +01:00
|
|
|
edition = "2021"
|
2025-01-29 05:06:41 +01:00
|
|
|
license = "LGPL-2.1"
|
2026-01-12 20:45:44 +01:00
|
|
|
description = "Rust bindings to Nix utility library"
|
|
|
|
|
repository = "https://github.com/nixops4/nix-bindings-rust"
|
2026-01-13 16:49:52 +01:00
|
|
|
readme = "README.md"
|
2024-02-16 09:59:51 +01:00
|
|
|
|
|
|
|
|
[lib]
|
2024-09-09 12:24:39 +02:00
|
|
|
path = "src/lib.rs"
|
2024-02-16 09:59:51 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-08-26 15:10:57 +02:00
|
|
|
anyhow = "1.0"
|
2026-01-13 17:53:44 +01:00
|
|
|
nix-bindings-util-sys = { path = "../nix-bindings-util-sys", version = "0.2.1" }
|
2025-12-06 15:44:20 -05:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-08-26 15:10:57 +02:00
|
|
|
ctor = "0.2"
|
2025-12-15 19:48:30 -05:00
|
|
|
|
2025-12-16 03:06:58 +01:00
|
|
|
[lints.rust]
|
|
|
|
|
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"
|