dlhn
dlhn copied to clipboard
DLHN implementation for Rust
```toml dlhn = "0.1.6" serde = "1.0" ``` ```rust fn main() { use serde::{Serialize, Deserialize}; let original = " ".repeat(129); let mut serialized = vec![]; original.serialize(&mut dlhn::Serializer::new(&mut serialized)).unwrap(); let deserialized...
Hi! Included in musli is a deterministic fuzzer, one thing it does is generate random datastructures and then tries to pipe them through a serialize / deserialize phase. I've had...
Is there a representation somewhere of what the serialized data will look like? In the specification, I saw only a representation of specific types. It may be worth adding a...
This is great. I love how the header is optional to keep the data size small when the format is known and compile time! > DLHN is a language and...