2022-11-11 23:48:24 +01:00
|
|
|
[package]
|
2023-01-02 14:37:08 +01:00
|
|
|
name = "tvix-store-bin"
|
2022-11-11 23:48:24 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-01-02 14:37:08 +01:00
|
|
|
[lib]
|
|
|
|
name = "tvix_store"
|
|
|
|
|
2022-11-11 23:48:24 +01:00
|
|
|
[dependencies]
|
2022-12-27 18:10:46 +01:00
|
|
|
anyhow = "1.0.68"
|
2022-11-12 00:40:09 +01:00
|
|
|
blake3 = { version = "1.3.1", features = ["rayon", "std"] }
|
2023-02-13 16:47:22 +01:00
|
|
|
clap = { version = "4.0", features = ["derive", "env"] }
|
|
|
|
count-write = "0.1.0"
|
2022-12-29 22:47:02 +01:00
|
|
|
data-encoding = "2.3.3"
|
2023-02-17 18:15:21 +01:00
|
|
|
fastcdc = "3.0.0"
|
2022-12-29 22:47:02 +01:00
|
|
|
lazy_static = "1.4.0"
|
2022-11-12 00:07:48 +01:00
|
|
|
prost = "0.11.2"
|
2023-02-13 16:47:22 +01:00
|
|
|
sha2 = "0.10.6"
|
2022-12-29 21:39:28 +01:00
|
|
|
sled = { version = "0.34.7", features = ["compression"] }
|
2023-01-31 12:18:03 +01:00
|
|
|
nix-compat = { path = "../nix-compat" }
|
2022-12-27 18:10:46 +01:00
|
|
|
thiserror = "1.0.38"
|
2022-12-28 16:40:28 +01:00
|
|
|
tokio-stream = "0.1.11"
|
2023-01-31 12:18:03 +01:00
|
|
|
tokio = { version = "1.23.0", features = ["rt-multi-thread"] }
|
2022-11-13 00:23:14 +01:00
|
|
|
tonic = "0.8.2"
|
2022-12-28 17:17:53 +01:00
|
|
|
tracing = "0.1.37"
|
2023-02-16 16:49:22 +01:00
|
|
|
tracing-subscriber = { version = "0.3.16", features = ["json"] }
|
2022-11-12 00:07:48 +01:00
|
|
|
|
2022-11-26 02:14:02 +01:00
|
|
|
[dependencies.tonic-reflection]
|
|
|
|
optional = true
|
|
|
|
version = "0.5.0"
|
|
|
|
|
2022-11-12 00:07:48 +01:00
|
|
|
[build-dependencies]
|
|
|
|
prost-build = "0.11.2"
|
2022-11-13 00:23:14 +01:00
|
|
|
tonic-build = "0.8.2"
|
2022-12-29 22:47:02 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
test-case = "2.2.2"
|
2022-12-29 21:39:28 +01:00
|
|
|
tempfile = "3.3.0"
|
2023-01-18 20:46:33 +01:00
|
|
|
tonic-mock = { git = "https://github.com/brainrake/tonic-mock", branch = "bump-dependencies" }
|
2022-11-26 02:14:02 +01:00
|
|
|
|
|
|
|
[features]
|
2023-01-21 14:18:51 +01:00
|
|
|
default = ["reflection"]
|
|
|
|
reflection = ["tonic-reflection"]
|