5a97888d8b
From now on we will add the dependencies and their version in the root Cargo.toml and in order to enable the dependency for a workspace member we set `workspace = true` in the member's Cargo.toml. Change-Id: I9738c1cf99810b7ace87ca712c3ea965ba846e25 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12389 Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
98 lines
3.2 KiB
TOML
98 lines
3.2 KiB
TOML
[package]
|
|
name = "tvix-castore"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-compression = { workspace = true, features = ["tokio", "zstd"] }
|
|
async-stream = { workspace = true }
|
|
async-tempfile = { workspace = true }
|
|
blake3 = { workspace = true, features = ["rayon", "std", "traits-preview"] }
|
|
bstr = { workspace = true }
|
|
bytes = { workspace = true }
|
|
data-encoding = { workspace = true }
|
|
digest = { workspace = true }
|
|
fastcdc = { workspace = true, features = ["tokio"] }
|
|
futures = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
object_store = { workspace = true, features = ["http"] }
|
|
parking_lot = { workspace = true }
|
|
pin-project-lite = { workspace = true }
|
|
prost = { workspace = true }
|
|
sled = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio-stream = { workspace = true, features = ["fs", "net"] }
|
|
tokio-util = { workspace = true, features = ["io", "io-util", "codec"] }
|
|
tokio-tar = { workspace = true }
|
|
tokio = { workspace = true, features = ["fs", "macros", "net", "rt", "rt-multi-thread", "signal"] }
|
|
tonic = { workspace = true }
|
|
tower = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-indicatif = { workspace = true }
|
|
tvix-tracing = { path = "../tracing", features = ["tonic"] }
|
|
url = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
zstd = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_with = { workspace = true }
|
|
serde_qs = { workspace = true }
|
|
petgraph = { workspace = true }
|
|
erased-serde = { workspace = true }
|
|
serde_tagged = { workspace = true }
|
|
hyper-util = { workspace = true }
|
|
redb = { workspace = true }
|
|
bigtable_rs = { workspace = true, optional = true }
|
|
fuse-backend-rs = { workspace = true, optional = true }
|
|
libc = { workspace = true, optional = true }
|
|
threadpool = { workspace = true, optional = true }
|
|
tonic-reflection = { workspace = true, optional = true }
|
|
vhost = { workspace = true, optional = true }
|
|
vhost-user-backend = { workspace = true, optional = true }
|
|
virtio-queue = { workspace = true, optional = true }
|
|
vm-memory = { workspace = true, optional = true }
|
|
vmm-sys-util = { workspace = true, optional = true }
|
|
virtio-bindings = { workspace = true, optional = true }
|
|
|
|
[build-dependencies]
|
|
prost-build = { workspace = true }
|
|
tonic-build = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
async-process = { workspace = true }
|
|
rstest = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio-retry = { workspace = true }
|
|
hex-literal = { workspace = true }
|
|
rstest_reuse = { workspace = true }
|
|
xattr = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[features]
|
|
default = ["cloud"]
|
|
cloud = [
|
|
"dep:bigtable_rs",
|
|
"object_store/aws",
|
|
"object_store/azure",
|
|
"object_store/gcp",
|
|
]
|
|
fs = ["dep:fuse-backend-rs", "dep:threadpool", "dep:libc"]
|
|
virtiofs = [
|
|
"fs",
|
|
"dep:vhost",
|
|
"dep:vhost-user-backend",
|
|
"dep:virtio-queue",
|
|
"dep:vm-memory",
|
|
"dep:vmm-sys-util",
|
|
"dep:virtio-bindings",
|
|
"fuse-backend-rs?/vhost-user-fs", # impl FsCacheReqHandler for SlaveFsCacheReq
|
|
"fuse-backend-rs?/virtiofs",
|
|
]
|
|
fuse = ["fs"]
|
|
tonic-reflection = ["dep:tonic-reflection"]
|
|
# Whether to run the integration tests.
|
|
# Requires the following packages in $PATH:
|
|
# cbtemulator, google-cloud-bigtable-tool
|
|
integration = []
|
|
|
|
[lints]
|
|
workspace = true
|