A Rust library for reading the OpenStreetMap PBF file format (*.osm.pbf).

12345678910111213141516171819
  1. dist: trusty
  2. sudo: false
  3. language: rust
  4. cache: cargo
  5. rust:
  6. - stable
  7. - beta
  8. - nightly
  9. - 1.23.0
  10. script:
  11. - |
  12. if [ "$TRAVIS_RUST_VERSION" == "1.23.0" ]; then
  13. cargo test --verbose;
  14. cargo doc --verbose --no-deps;
  15. else
  16. cargo test --verbose;
  17. cargo test --verbose --no-default-features;
  18. cargo doc --verbose;
  19. fi