//! `OrderMap 1.x` doesn't implement `schemars::JsonSchema`, pending:
//!
//! <https://github.com/GREsau/schemars/pull/516>
//!
//! For now, we use `IndexMap` when the `schemars` feature is enabled.
//!
//! In general, this library should be built with the `"schemars"` feature
//! disabled.
//!
//! Tests rely on OrderMap as some assertions expect order to be preserved.
pub use Keys;
pub use IndexMap as Map;
pub use Keys;
pub use OrderMap as Map;