fix(store): add toml dependency for feature xp-store-composition
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>
This commit is contained in:
parent
849e639c71
commit
39c8b6dece
2 changed files with 2 additions and 1 deletions
|
@ -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" ];
|
||||
};
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue