diff options
author | Florian Klink <flokli@flokli.de> | 2023-01-31T11·18+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-01-31T13·26+0000 |
commit | c27bacd905a14207edc56850fd4ef9383706b5c4 (patch) | |
tree | 197b49a52c0ab6a05196b82cbe2071b3eed5eaa0 /tvix/Cargo.lock | |
parent | 8ea93bb646456864088a2c93e9ab2c4ccae75cba (diff) |
refactor(tvix): introduce nix-compat crate r/5788
Move nixbase32 and store_path into this. This allows //tvix/cli to not pull in //tvix/store for now. Change-Id: Id3a32867205d95794bc0d33b21d4cb3d9bafd02a Reviewed-on: https://cl.tvl.fyi/c/depot/+/7964 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/Cargo.lock')
-rw-r--r-- | tvix/Cargo.lock | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock index 7519a5266092..46915411cba4 100644 --- a/tvix/Cargo.lock +++ b/tvix/Cargo.lock @@ -1302,6 +1302,18 @@ dependencies = [ ] [[package]] +name = "nix-compat" +version = "0.1.0" +dependencies = [ + "anyhow", + "data-encoding", + "glob", + "sha2 0.10.6", + "test-case", + "thiserror", +] + +[[package]] name = "nom8" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2617,7 +2629,6 @@ dependencies = [ "thiserror", "tvix-derivation", "tvix-eval", - "tvix-store-bin", ] [[package]] @@ -2627,13 +2638,13 @@ dependencies = [ "anyhow", "data-encoding", "glob", + "nix-compat", "serde", "serde_json", "sha2 0.10.6", "test-case", "test-generator", "thiserror", - "tvix-store-bin", ] [[package]] @@ -2699,6 +2710,7 @@ dependencies = [ "data-encoding", "fastcdc", "lazy_static", + "nix-compat", "prost", "prost-build", "sled", |