transmog-pot

Transmog implementation of the Pot format.

transmog-pot forbids unsafe code crate version Documentation for <code>main</code> branch

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); ```

Open-source Licenses

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.