quick-protobuf icon indicating copy to clipboard operation
quick-protobuf copied to clipboard

A rust implementation of protobuf parser

Results 72 quick-protobuf issues
Sort by recently updated
recently updated
newest added

this is my proto: syntax = "proto3"; message GetRequest { string name = 1; int32 age = 2; repeated string features = 3; } this is my rs files: let...

deserialize_from_slice requires vec or &[u8] live longer than object decoded. deserialize_from_vec may be helperful, and then we can transfer object decoded from one function to another function. thanks!

We are in the [process](https://github.com/libp2p/rust-libp2p/pull/3312) of adopting `quick-protobuf` in `rust-libp2p` and a few points came up whilst using the API. - The naming of various traits and functions is too...

Hi! I am wondering if it would be possible to release a new version that includes https://github.com/tafia/quick-protobuf/pull/247? Are there any other issues you'd like to have addressed before cutting a...

* This may need to change, especially changing the actual tests to work easily with `cargo test` * dependabot will automatically propose updates * please rename primary branch to `main`...

Would it be possible to add a feature to pb-rs so that the generated code only uses containers with deterministic iteration order? In my testing, it appears the only thing...

Is it possible to add an option to disable automatic mod.rs generation?

Trying to run tests with the `run_test.sh` I get quite a lot of failures: https://gist.github.com/dignifiedquire/c03ae16417f9f27fe4eabd1e5c823d7e Running `cargo test -p quick-protobuf` also fails. Any guidance how to run them locally would...

As far as I can tell there is no working CI setup at the moment. Github actions would likely be the easiest to setup.

This removes the restriction to require all path params to be of the same path type. Just a minor nuisance.