diff options
author | Florian Klink <flokli@flokli.de> | 2024-01-15T17·22+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-01-15T18·54+0000 |
commit | f0a750bcb7e3145974f99383a5db905b9e0d72a3 (patch) | |
tree | ccb416ea9c9134bf2b118f68fc6ce0b74c6962fb /tvix/Cargo.lock | |
parent | 170e0cdfadd96176595c47b573d0a1f27a7c734b (diff) |
feat(tvix/build): add CLI entrypoint r/7387
This starts a BuildService as a separate process, currently defaulting to the DummyBuildService. Change-Id: Ic206f00831641d3ffebaa44883b7dc053700b9ca Reviewed-on: https://cl.tvl.fyi/c/depot/+/10631 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/Cargo.lock')
-rw-r--r-- | tvix/Cargo.lock | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock index a37c04f974d6..429bdfd2571a 100644 --- a/tvix/Cargo.lock +++ b/tvix/Cargo.lock @@ -3283,16 +3283,19 @@ name = "tvix-build" version = "0.1.0" dependencies = [ "bytes", + "clap", "itertools 0.12.0", "prost 0.12.1", "prost-build", "test-case", "thiserror", "tokio", + "tokio-listener", "tonic 0.10.2", "tonic-build", "tonic-reflection", "tracing", + "tracing-subscriber", "tvix-castore", "url", ] |