| Crates.io | pb-jelly |
| lib.rs | pb-jelly |
| version | 0.0.17 |
| created_at | 2020-09-16 00:46:08.430292+00 |
| updated_at | 2024-11-21 00:50:02.811172+00 |
| description | A protobuf runtime for the Rust language developed at Dropbox |
| homepage | https://github.com/dropbox/pb-jelly |
| repository | https://github.com/dropbox/pb-jelly/tree/main/pb-jelly |
| max_upload_size | |
| id | 289277 |
| size | 75,084 |
pb-jellyThis crates provides the necessary trait implementations to power code generated with pb-jelly-gen. You should
include this crate as a dependency in your Cargo.toml.
Cargo.toml[dependencies]
pb-jelly = "0.0.17"
Then in the general case, all you'll need to use in your code is the Message trait this crate defines, e.g.
use pb_jelly::Message;
More complete examples can be found in the examples crate, or
the pb-test crate itself.