Add conversions for StorePath to harmonia

Only enabled with new feature "harmonia" due to harmonia's state of
flux.
This commit is contained in:
Artemis Tosini 2026-01-14 14:44:33 -05:00 committed by John Ericson
parent fddf079d35
commit aae065cb3e
4 changed files with 960 additions and 10 deletions

View file

@ -18,6 +18,7 @@ nix-bindings-util-sys = { path = "../nix-bindings-util-sys", version = "0.2.1" }
nix-bindings-store-sys = { path = "../nix-bindings-store-sys", version = "0.2.1" }
lazy_static = "1.4"
zerocopy = "0.8"
harmonia-store-core = { version = "0.0.0-alpha.0", optional = true }
[dev-dependencies]
ctor = "0.2"
@ -30,6 +31,9 @@ pkg-config = "0.3"
# Needed for version parsing in build.rs
nix-bindings-util = { path = "../nix-bindings-util", version = "0.2.1" }
[features]
harmonia = [ "dep:harmonia-store-core" ]
[lints.rust]
warnings = "deny"
dead-code = "allow"