9 unstable releases (3 breaking)
Uses new Rust 2024
| 0.3.1 | Sep 3, 2025 |
|---|---|
| 0.3.0 | Aug 14, 2025 |
| 0.2.2 | May 7, 2025 |
| 0.2.1 | Apr 4, 2025 |
| 0.0.2 | Nov 28, 2024 |
#1327 in Network programming
1,395 downloads per month
35KB
587 lines
Compile-time library to build proto files via prost-build
and generate service stubs to be used with twurst-server.
Getting started
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.
Cargo features
grpcgenerate server stubs for a gRPC server usingtonic. Seetwurst-serverdocumentation more more details.
License
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.
Dependencies
~9–16MB
~300K SLoC