diff options
author | Vincent Ambo <mail@tazj.in> | 2023-01-06T15·56+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-01-06T17·57+0000 |
commit | 1ebda9e13e0a11d3040267134e0a23600f9faf65 (patch) | |
tree | 1b8937eb683278f168ec1ec3ccd2fec50d6eec6f /tvix/Cargo.lock | |
parent | 3e03e59893b77b0b3915224967b377f6e940670d (diff) |
fix(tvix/derivation): fix build after StorePath rename r/5616
This project was not previously covered by CI (fixed in this commit), so we didn't catch breakage due to a renamed module. This was noticed while rebasing a CL that has a dependency on this crate in its Nix build. Change-Id: Ic48570b9313e5f73e14daab50cf7ea70918c94d1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7778 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/Cargo.lock')
-rw-r--r-- | tvix/Cargo.lock | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock index 477b6173daa2..604e16bdcee7 100644 --- a/tvix/Cargo.lock +++ b/tvix/Cargo.lock @@ -489,20 +489,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb" [[package]] -name = "derivation" -version = "0.1.0" -dependencies = [ - "anyhow", - "glob", - "serde", - "serde_json", - "sha2", - "test-case", - "test-generator", - "tvix-store-bin", -] - -[[package]] name = "diff" version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2198,6 +2184,20 @@ dependencies = [ ] [[package]] +name = "tvix-derivation" +version = "0.1.0" +dependencies = [ + "anyhow", + "glob", + "serde", + "serde_json", + "sha2", + "test-case", + "test-generator", + "tvix-store-bin", +] + +[[package]] name = "tvix-eval" version = "0.1.0" dependencies = [ |