[go: up one dir, main page]

ordermap 0.2.7

A hash table with consistent order and fast iteration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: rust
sudo: false
matrix:
  include:
    - rust: stable
    - rust: beta
    - rust: nightly
branches:
  only:
    - master
script:
  - |
      cargo build --verbose --features "$FEATURES" &&
      cargo test --verbose --features "$FEATURES" &&
      cargo test --release --verbose --features "$FEATURES" &&
      cargo doc --verbose --features "$FEATURES"