Merge pull request #36 from nixops4/aanderse/main

Fix path coercion by calling eval_state_builder_load()
This commit is contained in:
Robert Hensing 2026-01-13 02:03:57 +01:00 committed by GitHub
commit a669289887
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 264 additions and 42 deletions

View file

@ -2,6 +2,7 @@
name = "nix-bindings-expr"
version = "0.1.1"
edition = "2021"
build = "build.rs"
license = "LGPL-2.1"
description = "Rust bindings to Nix expression evaluator"
repository = "https://github.com/nixops4/nix-bindings-rust"
@ -19,6 +20,10 @@ ctor = "0.2"
tempfile = "3.10"
cstr = "0.2"
[build-dependencies]
pkg-config = "0.3"
nix-bindings-util = { path = "../nix-bindings-util" }
[lints.rust]
warnings = "deny"
dead-code = "allow"