capnproto-rust icon indicating copy to clipboard operation
capnproto-rust copied to clipboard

Cap'n Proto for Rust

Results 101 capnproto-rust issues
Sort by recently updated
recently updated
newest added

Context: https://github.com/capnproto/capnproto/pull/1131 In the c++ capnproto lib this feature was added that allows, as @kentonv says: > This makes it possible, when an RPC forwards to another RPC, to start...

Hello! Does there is any plan to integrate with [tower service](https://medium.com/@carllerche/announcing-tower-a-library-for-writing-robust-network-services-with-rust-67273f052c40) for the RPC? With that we will be able to exploit every middlewares provided by tower ecosystem which includes...

Each commit should be self explainable. This makes the code simpler and should help the compiler optimize things a bit better.

the 'getters' in this library (both internal and generated) are non-idiomatic. In Rust, it is considered non-idiomatic to prefix getters with `get_`. see [RFC #344](https://github.com/rust-lang/rfcs/blob/master/text/0344-conventions-galore.md#gettersetter-apis) obviously fixing this would be...

Hi:) I am playing the `hello-world` example on [monoio](https://github.com/bytedance/monoio) (A runtime that is based on io_uring), but both server and client sides block, and from my observation, `.await`ing `RpcSystem` won't...

In my code below, I want to reuse my capnp message object because I dont want to have to allocate new memory on every cycle of my loop. However, when...

Examples from [a PuzzleFS action](https://github.com/project-machine/puzzlefs/actions/runs/11185341463/job/31097989135): ``` error: the following explicit lifetimes could be elided: 'a --> /home/amiculas/work/cisco/puzzlefs/target/debug/build/puzzlefs-lib-d2835cfcf1bcc89b/out/metadata_capnp.rs:15:9 | 15 | impl {} | ^^ ^^ | = help: for further...