b29d1ae372
This imports the contents at a given Path into the tvix store. It doesn't register the contents at a Path in the store itself, that's up to the PathInfoService. Change-Id: I2c493532d65b90f199ddb7dfc90249f5c2957dee Reviewed-on: https://cl.tvl.fyi/c/depot/+/8159 Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
44 lines
1 KiB
TOML
44 lines
1 KiB
TOML
[package]
|
|
name = "tvix-store-bin"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "tvix_store"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68"
|
|
blake3 = { version = "1.3.1", features = ["rayon", "std"] }
|
|
clap = { version = "4.0", features = ["derive", "env"] }
|
|
count-write = "0.1.0"
|
|
data-encoding = "2.3.3"
|
|
fastcdc = "3.0.0"
|
|
lazy_static = "1.4.0"
|
|
prost = "0.11.2"
|
|
sha2 = "0.10.6"
|
|
sled = { version = "0.34.7", features = ["compression"] }
|
|
nix-compat = { path = "../nix-compat" }
|
|
thiserror = "1.0.38"
|
|
tokio-stream = "0.1.11"
|
|
tokio = { version = "1.23.0", features = ["rt-multi-thread"] }
|
|
tonic = "0.8.2"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.16", features = ["json"] }
|
|
walkdir = "2.3.2"
|
|
|
|
[dependencies.tonic-reflection]
|
|
optional = true
|
|
version = "0.5.0"
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.11.2"
|
|
tonic-build = "0.8.2"
|
|
|
|
[dev-dependencies]
|
|
test-case = "2.2.2"
|
|
tempfile = "3.3.0"
|
|
tonic-mock = { git = "https://github.com/brainrake/tonic-mock", branch = "bump-dependencies" }
|
|
|
|
[features]
|
|
default = ["reflection"]
|
|
reflection = ["tonic-reflection"]
|