Skip to main content

serde_alter/
lib.rs

1//! Utilities for alternative [serde] serializations.
2//! 
3//! See the [README](https://github.com/LMOORS30/serde-alter#serde-alter) for additional information and [Installation](https://github.com/LMOORS30/serde-alter#cargotoml).
4//! 
5//! [![github-com]](https://github.com/LMOORS30/serde-alter) [![crates-io]](https://crates.io/crates/serde-alter) [![docs-rs]](crate)
6//! 
7//! [github-com]: https://img.shields.io/badge/github.com-LMOORS30/serde--alter-5e728a?labelColor=505050&style=for-the-badge&logo=github
8//! [crates-io]: https://img.shields.io/badge/crates.io-serde--alter-5e888a?labelColor=505050&style=for-the-badge&logo=rust
9//! [docs-rs]: https://img.shields.io/badge/docs.rs-serde--alter-5e8a76?labelColor=505050&style=for-the-badge&logo=docs.rs
10//! 
11//! <br>
12//! 
13//! See [`Alter`] to get started with the documentation or check out the [examples](https://github.com/LMOORS30/serde-alter/tree/master/examples).
14
15#![cfg_attr(not(feature = "std"), no_std)]
16
17pub use alter::*;
18
19mod alter;