diff options
Diffstat (limited to 'tvix/store')
-rw-r--r-- | tvix/store/Cargo.toml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index b306a11f44c0..151d985c82eb 100644 --- a/tvix/store/Cargo.toml +++ b/tvix/store/Cargo.toml @@ -20,6 +20,7 @@ tokio-stream = "0.1.11" tonic = "0.8.2" tracing-subscriber = "0.3.16" tracing = "0.1.37" +fastcdc = "2.0.0" [dependencies.tonic-reflection] optional = true @@ -35,9 +36,5 @@ tempfile = "3.3.0" tonic-mock = { git = "https://github.com/brainrake/tonic-mock", branch = "bump-dependencies" } [features] -default = [ - "reflection" -] -reflection = [ - "tonic-reflection" -] +default = ["reflection"] +reflection = ["tonic-reflection"] |