| Crates.io | twurst-build |
| lib.rs | twurst-build |
| version | 0.3.1 |
| created_at | 2024-11-27 13:04:13.789905+00 |
| updated_at | 2025-09-03 08:24:57.069476+00 |
| description | Build script to generate bindings for .proto files for Twirp |
| homepage | |
| repository | https://github.com/helsing-ai/twurst |
| max_upload_size | |
| id | 1463003 |
| size | 49,262 |
Compile-time library to build proto files via prost-build
and generate service stubs to be used with twurst-server.
Create a build.rs with:
fn main() -> std::io::Result<()> {
twurst_build::TwirpBuilder::new()
.with_server() // If you want to build a Twirp server
.with_client() // If you want to build a Twirp client
.compile_protos(&["proto/service.proto"], &["proto"])
}
and add to your Cargo.toml:
[dependencies]
prost = ""
prost-types = ""
prost-reflect = ""
[build-dependencies]
twurst-build = ""
Note that protoc must be available, see prost-build documentation on this topic.
If you have nix installed, we also provide a dev-shell that provides protoc. Use nix develop or direnv to enter the dev-shell.
See twurst-client and twurst-server for more detailed documentation on the server and client usages.
grpc generate server stubs for a gRPC server using tonic. See twurst-server documentation more more details.Copyright 2024 Helsing GmbH
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.