2023-12-09 09:49:47 +01:00
|
|
|
[package]
|
|
|
|
name = "tvix-build"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-28 23:54:46 +02:00
|
|
|
bytes = { workspace = true }
|
|
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
|
|
itertools = { workspace = true }
|
|
|
|
prost = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
2024-09-27 14:13:21 +02:00
|
|
|
tokio = { workspace = true, features = ["process"] }
|
2024-08-28 23:54:46 +02:00
|
|
|
tokio-listener = { workspace = true, features = ["tonic012"] }
|
|
|
|
tonic = { workspace = true, features = ["tls", "tls-roots"] }
|
2024-09-27 14:13:21 +02:00
|
|
|
# TODO: put the fuse dep behind a feature flag?
|
|
|
|
tvix-castore = { path = "../castore", features = ["fuse"]}
|
2024-08-28 23:54:46 +02:00
|
|
|
tracing = { workspace = true }
|
|
|
|
url = { workspace = true }
|
|
|
|
mimalloc = { workspace = true }
|
|
|
|
tonic-reflection = { workspace = true, optional = true }
|
2023-12-09 09:49:47 +01:00
|
|
|
|
2024-09-27 14:13:21 +02:00
|
|
|
anyhow = "1.0.79"
|
|
|
|
blake3 = "1.5.0"
|
|
|
|
bstr = "1.6.0"
|
|
|
|
data-encoding = "2.5.0"
|
|
|
|
futures = "0.3.30"
|
|
|
|
oci-spec = "0.6.4"
|
|
|
|
serde_json = "1.0.111"
|
|
|
|
tvix-tracing = { path = "../tracing" }
|
|
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|
|
|
|
|
2023-12-09 09:49:47 +01:00
|
|
|
[build-dependencies]
|
2024-08-28 23:54:46 +02:00
|
|
|
prost-build = { workspace = true }
|
|
|
|
tonic-build = { workspace = true }
|
2023-12-09 09:49:47 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2024-05-26 18:19:23 +02:00
|
|
|
tonic-reflection = ["dep:tonic-reflection", "tvix-castore/tonic-reflection"]
|
2024-01-05 14:53:26 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-28 23:54:46 +02:00
|
|
|
rstest = { workspace = true }
|
2024-09-27 14:13:21 +02:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
tempfile = "3.3.0"
|
2024-05-13 18:42:50 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|