blob: 08102a66be503d98ba61c8da11f4152c15cc5717 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
[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"
tokio = { version = "1.32.0" }
tonic = { version = "0.10.2", features = ["tls", "tls-roots"] }
tvix-castore = { path = "../castore" }
tracing = "0.1.37"
url = "2.4.0"
[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"
|