about summary refs log tree commit diff
path: root/tvix/build/Cargo.toml
blob: 626fd35d7713094d9bb9c05cd7c912e84ce0d486 (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
31
32
33
[package]
name = "tvix-build"
version = "0.1.0"
edition = "2021"

[dependencies]
bytes = "1.4.0"
clap = { version = "4.0", features = ["derive", "env"] }
itertools = "0.12.0"
prost = "0.12.1"
thiserror = "1.0.56"
tokio = { version = "1.32.0" }
tokio-listener = { version = "0.3.2", features = [ "tonic011" ] }
tonic = { version = "0.11.0", features = ["tls", "tls-roots"] }
tvix-castore = { path = "../castore" }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["json"] }
url = "2.4.0"

[dependencies.tonic-reflection]
optional = true
version = "0.11.0"

[build-dependencies]
prost-build = "0.12.1"
tonic-build = "0.11.0"

[features]
default = []
tonic-reflection = ["dep:tonic-reflection"]

[dev-dependencies]
rstest = "0.19.0"