logo
1
2
3
4
5
6
7
8
//! Tools for using [HashMap]s and [BTreeMap]s with non-string keys with
//! the JSON codec.
//!
//! [HashMap]: std::collections::HashMap
//! [BTreeMap]: std::collections::BTreeMap

pub mod btreemap;
pub mod hashmap;