Registry / serialization / sonic-rs

sonic-rs

JSON →
library0.5.8rscratesunverified

A fast Rust JSON library based on SIMD for high-performance parsing and serialization.

# Cargo.toml [dependencies] sonic-rs = "0.5.8"
INSTALL
IMPORT
SIG · SONIC-RS
S
sonic-rs
serializationrustv0.5.8
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.

Value
use sonic_rs::Value;

Parses a JSON string into a Value using SIMD acceleration.

use sonic_rs::Value; fn main() { let json_str = r#"{"name":"Alice","age":30}"#; let v: Value = sonic_rs::from_str(json_str).unwrap(); println!("Parsed: {:?}", v); }
Debug
Known issues
gotchaRequires a CPU with SIMD support (e.g., SSE4.2 on x86_64).
fix
Ensure your target platform supports SIMD or use fallback features.
affects: >=0.1.0
Upgrade
Version history
0.5.8latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
sonic-rs — cargo add sonic-rs · libregistry