serde_hash 0.2.0

A Rust library for seamlessly integrating HashIds with Serde serialization and deserialization. This library provides a convenient way to obfuscate numeric IDs in your JSON output without changing your application's internal data structures.
Documentation
1
2
3
4
5
#![doc = include_str!("../README.MD")]
pub use serde_hash_derive::*;
pub mod hashids;
pub mod salt;
pub mod serde_impl;