git.delta.rocks / jrsonnet / refs/commits / 45f5af0fdfba

difftreelog

fix native-eval stub

Yaroslav Bolyukin2024-11-14parent: #064468b.patch.diff
in: trunk

2 files changed

modifiedcrates/nix-native-eval/Cargo.tomldiffbeforeafterboth
--- a/crates/nix-native-eval/Cargo.toml
+++ b/crates/nix-native-eval/Cargo.toml
@@ -4,4 +4,5 @@
 version.workspace = true
 
 [dependencies]
+anyhow.workspace = true
 nixrs = { git = "https://github.com/Anillc/nixrs", version = "0.1.0" }
modifiedcrates/nix-native-eval/src/lib.rsdiffbeforeafterboth
before · crates/nix-native-eval/src/lib.rs
1use nixrs::{State, Store};23fn init() {4	nixrs::init();5	let store = Store::new("daemon")?;6	let state = State::new(store)7}