5 unstable releases
0.3.0 | Aug 24, 2023 |
---|---|
0.2.0 | Feb 28, 2023 |
0.1.0 | Feb 4, 2022 |
0.1.0-dev.2 | Dec 31, 2021 |
0.1.0-dev.1 | Dec 29, 2021 |
#2008 in Encoding
289 downloads per month
Used in 11 crates
(2 directly)
13KB
203 lines
transmog-pot
Transmog implementation of the Pot format.
This crate provides a Format
trait implementation using the Pot
type:
use transmog::{Format, OwnedDeserializer};
use transmog_pot::Pot;
let pot = Pot::default();
let serialized = pot.serialize(&42_u64).unwrap();
let deserialized: u64 = pot.deserialize_owned(&serialized).unwrap();
assert_eq!(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.
Dependencies
~0.7–1MB
~22K SLoC