| Crates.io | tachyon_json |
| lib.rs | tachyon_json |
| version | 1.0.1 |
| created_at | 2025-07-21 12:15:32.519727+00 |
| updated_at | 2025-07-21 16:40:27.436615+00 |
| description | Ultra-fast json encoding utilities |
| homepage | |
| repository | https://github.com/TachyonConcepts/TachyonJson |
| max_upload_size | |
| id | 1761986 |
| size | 13,326 |
Tachyon JSON is a hyper-optimized JSON serializer and buffer written in Rust.
It's not just fast — it doesn't apologize for hurting nanoseconds.
To build a serializer that:
Honest microbenchmark results (1_000_000 iterations):
{"message":"Hello, world!"}
Serde (zero-copy) at: 23 ns.
Tachyon JSON at: 8 ns.
Yes, you read that right.
let mut out = TachyonBuffer::<100>::default();
let msg = tachyon_object_noescape! {
"message" => "Hello, world!",
};
unsafe { msg.encode(&mut out, true); }
println!("{}", String::from_utf8_lossy(out.as_slice()));