From d223c72d032d6f208f403a2c68c8a9e261175323 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Tue, 14 Jan 2025 10:25:11 +0200 Subject: [PATCH] Revert "core: Previous commits didn't actually remove nix as dependency, so do that here" This reverts commit cca3846f950c262c6a92c28980df155d94ef658b, we need to bring it back unfortunately. --- Cargo.lock | 1 + core/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index aa3f2d2e8..fd7bec345 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1217,6 +1217,7 @@ dependencies = [ "miette", "mimalloc", "mockall", + "nix 0.29.0", "pest", "pest_derive", "polling", diff --git a/core/Cargo.toml b/core/Cargo.toml index 0daa58c0d..c0c12a0a3 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -40,6 +40,7 @@ fallible-iterator = "0.3.0" hex = "0.4.3" libc = "0.2.155" log = "0.4.20" +nix = { version = "0.29.0", features = ["fs"] } sieve-cache = "0.1.4" sqlite3-parser = { path = "../vendored/sqlite3-parser" } thiserror = "1.0.61"