diff options
author | Florian Klink <flokli@flokli.de> | 2024-01-05T13·53+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-01-06T15·33+0000 |
commit | 986e9b73c3c1e694fa0cbc4d29440ad8b8938269 (patch) | |
tree | 52be68fb5beb2aea347207d5e03f84f42f982d61 /tvix/build/Cargo.toml | |
parent | c9c95f4ef3b2d4a99723a2779744f5f4def65660 (diff) |
feat(tvix/build): add BuildRequest validation r/7356
Change-Id: I8182e4c4a7e5694c1e6f1f56ce092751c22adf4c Reviewed-on: https://cl.tvl.fyi/c/depot/+/10538 Reviewed-by: raitobezarius <tvl@lahfa.xyz> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/build/Cargo.toml')
-rw-r--r-- | tvix/build/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tvix/build/Cargo.toml b/tvix/build/Cargo.toml index 99802fcc9901..7b1594abc384 100644 --- a/tvix/build/Cargo.toml +++ b/tvix/build/Cargo.toml @@ -5,7 +5,9 @@ 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" } @@ -20,3 +22,6 @@ tonic-build = "0.10.2" [features] default = [] tonic-reflection = ["dep:tonic-reflection"] + +[dev-dependencies] +test-case = "3.3.1" |