Also provide a dummy implementation that just fails on any build that's requested. Change-Id: I0df743a730c5331ec9ce6e97a966abe18ce067f5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10627 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
28 lines
476 B
TOML
28 lines
476 B
TOML
[package]
|
|
name = "tvix-build"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bytes = "1.4.0"
|
|
itertools = "0.12.0"
|
|
prost = "0.12.1"
|
|
thiserror = "1.0.56"
|
|
tonic = "0.10.2"
|
|
tvix-castore = { path = "../castore" }
|
|
tracing = "0.1.37"
|
|
|
|
[dependencies.tonic-reflection]
|
|
optional = true
|
|
version = "0.10.2"
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.12.1"
|
|
tonic-build = "0.10.2"
|
|
|
|
[features]
|
|
default = []
|
|
tonic-reflection = ["dep:tonic-reflection"]
|
|
|
|
[dev-dependencies]
|
|
test-case = "3.3.1"
|