non-empty-collections 0.1.2

Non-empty hash-map and hash-set implementations
Documentation
build:nightly:
  image: "rustlang/rust:nightly"
  script:
  - rustc --version && cargo --version
  - cargo build --all && cargo build --examples
  - cargo test --all --verbose

build:stable:
  image: "rust:latest"
  script:
  - rustc --version && cargo --version
  - cargo build --all && cargo build --examples
  - cargo test --all --verbose

pages:
  image: "rust:latest"
  script:
  - cargo doc
  - mv target/doc/ public/
  artifacts:
    paths:
    - public
  only:
    - master