Registry / serialization / speedy

speedy

JSON →
library0.8.7rscratesunverified

A fast binary serialization framework for Rust.

# Cargo.toml [dependencies] speedy = "0.8.7"
INSTALL
IMPORT
SIG · SPEEDY
S
speedy
serializationrustv0.8.7
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Readable
use speedy::Readable;

Serialize and deserialize a struct using Speedy.

use speedy::{Readable, Writable}; #[derive(Readable, Writable)] struct Point { x: i32, y: i32 } fn main() { let point = Point { x: 1, y: 2 }; let bytes = point.write_to_vec().unwrap(); let read = Point::read_from_buffer(&bytes).unwrap(); println!("Point: ({}, {})", read.x, read.y); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.8.7latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
8
Resources
speedy — cargo add speedy · libregistry