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"
|
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"
|
2025-10-04 02:44:22 +02:00
|
|
|
nix-bindings-util = { path = "../nix-bindings-util" }
|
|
|
|
|
nix-bindings-bindgen-raw = { path = "../nix-bindings-bindgen-raw" }
|
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
|
|
|
|
|
nix-bindings-util = { path = "../nix-bindings-util" }
|