about summary refs log tree commit diff
path: root/tvix/build/Cargo.toml
blob: 6f9d8a34f276b8b8946b92f52596fe798c12181a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "tvix-build"
version = "0.1.0"
edition = "2021"

[dependencies]
prost = "0.12.1"
tonic = "0.10.2"
tvix-castore = { path = "../castore" }

[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"]