Upgrade ordermap dependency to indexmap. (#227)

Avoid the need for indexmap-based applications to build ordermap,
which is the old name for indexmap.

Signed-off-by: Brian Smith <brian@briansmith.org>
This commit is contained in:
Brian Smith
2018-02-26 18:27:13 -10:00
committed by Carl Lerche
parent b6724f7d7a
commit 06672cbde9
3 changed files with 8 additions and 8 deletions

View File

@@ -108,7 +108,7 @@ extern crate slab;
#[macro_use]
extern crate log;
extern crate string;
extern crate ordermap;
extern crate indexmap;
mod error;
#[cfg_attr(feature = "unstable", allow(missing_docs))]