maxminddb 0.11.0

Library for reading MaxMind DB format used by GeoIP2 and GeoLite2
Documentation
[package]
name = "maxminddb"
version = "0.11.0"
authors = [ "Gregory J. Oschwald <oschwald@gmail.com>" ]
description = "Library for reading MaxMind DB format used by GeoIP2 and GeoLite2"
readme = "README.md"
keywords = ["MaxMind", "GeoIP2", "GeoIP", "geolocation", "ip"]
categories = ["database", "network-programming"]
homepage = "https://github.com/oschwald/maxminddb-rust"
documentation = "http://oschwald.github.io/maxminddb-rust/maxminddb/struct.Reader.html"
repository = "https://github.com/oschwald/maxminddb-rust"
license = "ISC"
include = ["/Cargo.toml", "/src/**/*.rs", "/README.md", "/LICENSE"]

[features]
default = []
mmap = ["memmap"]

[lib]
name ="maxminddb"
crate_type = ["lib", "dylib", "staticlib"]
path = "src/maxminddb/lib.rs"

[dependencies]
log = "0.4"
serde = "1.0"
serde_derive = "1.0"
memmap = { version = "0.7.0", optional = true }

[dev-dependencies]
env_logger = "0.5"

[badges]
travis-ci = { repository = "oschwald/maxminddb-rust" }