Transmog implementation of the Pot format.
This crate provides a Format
trait implementation using the Pot
type:
```rust use transmog::Format; use transmog_pot::Pot;
let pot = Pot::default(); let serialized = pot.serialize(&42u64).unwrap(); let deserialized: u64 = pot.deserialize(&serialized).unwrap(); asserteq!(deserialized, 42); ```
This project, like all projects from Khonsu Labs, are open-source. This repository is available under the MIT License or the Apache License 2.0.
To learn more about contributing, please see CONTRIBUTING.md.