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

Cargo.toml 773B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "osmpbf"
  3. version = "0.1.5"
  4. authors = ["Johannes Hofmann <mail@b-r-u.org>"]
  5. readme = "README.md"
  6. repository = "https://github.com/b-r-u/osmpbf"
  7. homepage = "https://github.com/b-r-u/osmpbf"
  8. description = """
  9. A reader for the OpenStreetMap PBF file format (*.osm.pbf).
  10. """
  11. categories = ["parser-implementations", "encoding", "science"]
  12. keywords = ["openstreetmap", "osm", "pbf", "protocolbuffer", "protobuf"]
  13. license = "MIT/Apache-2.0"
  14. [badges]
  15. travis-ci = { repository = "b-r-u/osmpbf" }
  16. appveyor = { repository = "b-r-u/osmpbf" }
  17. [features]
  18. default = ["system-libz"]
  19. system-libz = ["flate2"]
  20. [dependencies]
  21. protobuf = "1.4"
  22. byteorder = "1.1"
  23. flate2 = { version = "1.0", optional = true }
  24. inflate = "0.3"
  25. error-chain = "0.11"
  26. memmap = "0.6"
  27. rayon = "1.0"