transmog-pot

Crates.iotransmog-pot
lib.rstransmog-pot
version0.3.0
sourcesrc
created_at2021-12-29 18:05:52.19285
updated_at2023-08-24 17:09:41.630843
descriptionPot adaptor for Transmog
homepage
repositoryhttps://github.com/khonsulabs/transmog
max_upload_size
id504957
size9,312
Publishers (github:khonsulabs:publishers)

documentation

README

transmog-pot

Transmog implementation of the Pot format.

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

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.

Commit count: 39

cargo fmt