#protobuf #field #codec #fire #decode #encode #data

fire-protobuf

Rust only protobuf implementation

5 releases

0.1.5 Oct 31, 2023
0.1.4 Jul 19, 2023
0.1.2 Jan 20, 2023

#2050 in Encoding

Download history 19/week @ 2024-02-05 14/week @ 2024-02-12 33/week @ 2024-02-19 21/week @ 2024-02-26 8/week @ 2024-03-04 18/week @ 2024-03-11 24/week @ 2024-04-01 57/week @ 2024-04-08 24/week @ 2024-04-15

105 downloads per month
Used in 4 crates

MIT/Apache

51KB
2K SLoC

Fire Protobuf

A library to encode and decode data in the protobuf format. Supports derive.

Example

use fire_protobuf::{EncodeMessage, DecodeMessage, from_slice, to_vec};

#[derive(Debug, PartialEq, Eq, EncodeMessage, DecodeMessage)]
struct MyData {
	#[field(1)]
	s: String,
	#[field(5)]
	items: Vec<Item>
}

#[derive(Debug, PartialEq, Eq, EncodeMessage, DecodeMessage)]
struct Item {
	#[field(1)]
	name: String,
	#[field(2)]
	value: u32
}

// get the data as bytes
let mut data = MyData {
	s: "data".into(),
	items: vec![
		Item {
			name: "1".into(),
			value: 1
		},
		Item {
			name: "2".into(),
			value: 2
		}
	]
};

let bytes = to_vec(&mut data).unwrap();
let n_data = from_slice(&bytes).unwrap();
assert_eq!(data, n_data);

Dependencies

~3MB
~58K SLoC