-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
36 lines (31 loc) · 930 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "osmpbf"
version = "0.3.4"
authors = ["Johannes Hofmann <[email protected]>"]
repository = "https://github.com/b-r-u/osmpbf"
homepage = "https://github.com/b-r-u/osmpbf"
description = "A reader for the OpenStreetMap PBF file format (*.osm.pbf)."
categories = ["parser-implementations", "encoding", "science"]
keywords = ["openstreetmap", "osm", "pbf", "protocolbuffer", "protobuf"]
rust-version = "1.74"
license = "MIT OR Apache-2.0"
edition = "2021"
[features]
default = ["rust-zlib"]
rust-zlib = ["flate2/rust_backend"]
zlib = ["flate2/zlib"]
zlib-ng = ["flate2/zlib-ng"]
[dependencies]
byteorder = "1.4"
flate2 = { version = "1.0", default-features = false }
memmap2 = "0.5"
protobuf = "3.1"
rayon = "1.5"
[dev-dependencies]
assert_approx_eq = "1.1.0"
criterion = { version = "0.3", features = ["html_reports"] }
[build-dependencies]
protobuf-codegen = "3.1"
[[bench]]
name = "counter_bench"
harness = false