2024-02-22 22:32:50 +01:00
|
|
|
[package]
|
2025-10-04 02:44:22 +02:00
|
|
|
name = "nix-bindings-store"
|
2024-02-22 22:32:50 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
2024-12-16 12:52:15 +01:00
|
|
|
build = "build.rs"
|
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 store library"
|
|
|
|
|
repository = "https://github.com/nixops4/nix-bindings-rust"
|
2024-02-22 22:32:50 +01:00
|
|
|
|
|
|
|
|
[lib]
|
2024-09-09 12:24:39 +02:00
|
|
|
path = "src/lib.rs"
|
2024-02-22 22:32:50 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-08-26 15:10:57 +02:00
|
|
|
anyhow = "1.0"
|
2026-01-12 20:44:01 +01:00
|
|
|
nix-bindings-util = { path = "../nix-bindings-util", version = "0.1.0" }
|
|
|
|
|
nix-bindings-util-sys = { path = "../nix-bindings-util-sys", version = "0.1.0" }
|
2025-08-26 15:10:57 +02:00
|
|
|
lazy_static = "1.4"
|
2024-12-16 12:52:15 +01:00
|
|
|
|
2025-10-16 00:40:52 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
|
ctor = "0.2"
|
|
|
|
|
tempfile = "3.10"
|
|
|
|
|
|
2024-12-16 12:52:15 +01:00
|
|
|
[build-dependencies]
|
2025-08-26 15:10:57 +02:00
|
|
|
pkg-config = "0.3"
|
2025-12-09 22:14:02 +01:00
|
|
|
# Needed for version parsing in build.rs
|
2026-01-12 20:44:01 +01:00
|
|
|
nix-bindings-util = { path = "../nix-bindings-util", version = "0.1.0" }
|
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"
|