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 }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tokio-listener = { workspace = true, features = ["tonic012"] }
|
|
|
|
tonic = { workspace = true, features = ["tls", "tls-roots"] }
|
2023-12-09 09:49:47 +01:00
|
|
|
tvix-castore = { path = "../castore" }
|
2024-06-06 15:44:11 +02:00
|
|
|
tvix-tracing = { path = "../tracing" }
|
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
|
|
|
|
|
|
|
[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-05-13 18:42:50 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|