4 releases

0.1.0 Feb 4, 2022
0.1.0-dev.2 Dec 31, 2021
0.1.0-dev.1 Dec 29, 2021
0.0.0-reserve.0 Dec 24, 2021

#2123 in Encoding

Download history 106/week @ 2023-11-20 230/week @ 2023-11-27 166/week @ 2023-12-04 91/week @ 2023-12-11 132/week @ 2023-12-18 73/week @ 2023-12-25 69/week @ 2024-01-01 122/week @ 2024-01-08 167/week @ 2024-01-15 160/week @ 2024-01-22 124/week @ 2024-01-29 215/week @ 2024-02-05 240/week @ 2024-02-12 148/week @ 2024-02-19 143/week @ 2024-02-26 141/week @ 2024-03-04

701 downloads per month
Used in 17 crates (7 directly)

MIT/Apache

6KB
99 lines

Transmog

Universal data serialization utilities for Rust.

Transmog forbids unsafe code crate version Live Build Status HTML Coverage Report for main branch Documentation for main branch

Rust has a vibrant ecosystem chock full of serialization crates. Many crates implement a common set of traits via Serde, but other crates can not or chose not to support Serde.

At the end of the day, however, most serialization formats can be interacted with in a generic fashion. The Format trait aims to be the universal serialization trait for any crate that can serialize from a std::io::Read and deserialize from a std::io::Write.

Status of this project

We are currently at the experimentation phase of creating this ecosystem. All constructive criticism, format requests, and questions are welcome on Github Issues. We are looking to use this crate as a strategy of offering versioned data support in BonsaiDb as well as customizable serialization support for Fabruic.

Serialization format support

We accept pull requests for any moderately stable serialization API.

Utilities for migrating data structures

Sometimes a breaking change is unavoidable. Perhaps, you've decided a different format is better for your situation. Or, you refactored your structure so much that serde's built-in attributes aren't enough to help. transmog-versions to the rescue!

The transmog-versions crate provides APIs that allow you to treat your currently stored data as "version 0" and provide the logic for handling loading each version of data.

Plans to add a derive macro to remove even more boilerplate code is planned.

Serializing/Deserializing from a futures::Stream

The transmog-async crate is a fork of async-bincode, altered to support the Format trait.

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.

No runtime deps

Features