diff options
author | Yureka <tvl@yuka.dev> | 2024-07-22T15·01+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-07-22T15·56+0000 |
commit | 39c8b6dece1ca414f4ce8dde49e9828e34319664 (patch) | |
tree | 631f19c51e635bc7954f49a7a7560a814a49fe3d /tvix | |
parent | 849e639c7169a5ceb28314e603c9bd5731306b0d (diff) |
fix(store): add toml dependency for feature xp-store-composition r/8402
Fixes 'use of undeclared crate or module ' with --features xp-store-composition Change-Id: I44dce86e656094d180b91a00f385f685d21f3fbd Reviewed-on: https://cl.tvl.fyi/c/depot/+/12021 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de> Autosubmit: yuka <yuka@yuka.dev>
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/Cargo.nix | 1 | ||||
-rw-r--r-- | tvix/store/Cargo.toml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 640880d4910c..12d111bed17f 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -16508,6 +16508,7 @@ rec { "tonic-reflection" = [ "dep:tonic-reflection" "tvix-castore/tonic-reflection" ]; "tracy" = [ "tvix-tracing/tracy" ]; "virtiofs" = [ "tvix-castore/virtiofs" ]; + "xp-store-composition" = [ "toml" ]; }; resolvedDefaultFeatures = [ "cloud" "default" "fuse" "integration" "otlp" "toml" "tonic-reflection" "tracy" "virtiofs" "xp-store-composition" ]; }; diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index e9c8b1fc5356..e70ed0e39674 100644 --- a/tvix/store/Cargo.toml +++ b/tvix/store/Cargo.toml @@ -75,7 +75,7 @@ otlp = ["tvix-tracing/otlp"] tonic-reflection = ["dep:tonic-reflection", "tvix-castore/tonic-reflection"] tracy = ["tvix-tracing/tracy"] virtiofs = ["tvix-castore/virtiofs"] -xp-store-composition = [] +xp-store-composition = ["toml"] # Whether to run the integration tests. # Requires the following packages in $PATH: # cbtemulator, google-cloud-bigtable-tool |