indexmap 1.1.0

A hash table with consistent order and fast iteration. The indexmap is a hash table where the iteration order of the key-value pairs is independent of the hash values of the keys. It has the usual hash table functionality, it preserves insertion order except after removals, and it allows lookup of its elements by either hash table key or numerical index. A corresponding hash set type is also provided. This crate was initially published under the name ordermap, but it was renamed to indexmap.
Documentation
language: rust
sudo: false
matrix:
  include:
    # MSRV is lower for non-dev builds
    - rust: 1.18.0
      env:
       - SKIP_TEST=1
    - rust: 1.30.0
    - rust: stable
      env:
       - FEATURES='serde-1'
    - rust: stable
      env:
       - FEATURES='rayon'
    - rust: beta
    - rust: nightly
      env:
       - TEST_BENCH=1
    - rust: nightly
      env:
       - FEATURES='test_low_transition_point'
branches:
  only:
    - master
script:
  - |
      cargo build --verbose --features "$FEATURES" &&
      if [ -z "$SKIP_TEST" ]; then
        cargo test --verbose --features "$FEATURES" &&
        cargo test --release --verbose --features "$FEATURES"
      fi &&
      if [ -n "$TEST_BENCH" ]; then
        cargo test -v --benches --no-run --features "$FEATURES"
      fi &&
      cargo doc --verbose --features "$FEATURES"