chore(tvix/cli): drop direct castore dependency

This is only using tvix-castore through tvix-store.

Change-Id: I342ee1e18f8c3946b712cfb446520b732091d58f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12680
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: Ilan Joselevich <personal@ilanjoselevich.com>
This commit is contained in:
Florian Klink 2024-10-23 15:10:51 +02:00 committed by clbot
parent ea0f2d1130
commit 9466c82025
3 changed files with 0 additions and 6 deletions

1
tvix/Cargo.lock generated
View file

@ -4661,7 +4661,6 @@ dependencies = [
"tracing",
"tracing-indicatif",
"tvix-build",
"tvix-castore",
"tvix-eval",
"tvix-glue",
"tvix-store",

View file

@ -15496,10 +15496,6 @@ rec {
name = "tvix-build";
packageId = "tvix-build";
}
{
name = "tvix-castore";
packageId = "tvix-castore";
}
{
name = "tvix-eval";
packageId = "tvix-eval";

View file

@ -10,7 +10,6 @@ path = "src/main.rs"
[dependencies]
nix-compat = { path = "../nix-compat" }
tvix-build = { path = "../build" }
tvix-castore = { path = "../castore" }
tvix-store = { path = "../store", default-features = false, features = []}
tvix-eval = { path = "../eval" }
tvix-glue = { path = "../glue" }