[package]
edition = "2021"
name = "osm_graph"
version = "0.2.0"
build = false
exclude = [
"/examples",
"*.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This library provides a set of tools for generating isochrones from geographic coordinates. It leverages OpenStreetMap data to construct road networks and calculate areas accessible within specified time limits. The library is designed for both Rust and Python, offering high performance and easy integration into data science workflows."
readme = "README.md"
keywords = [
"OpenStreetMaps",
"Isochrone",
"Mobility",
"Geo",
"Petgraph",
]
categories = [
"science::geo",
"simulation",
"visualization",
]
license = "MIT"
repository = "https://github.com/kyleloving/osm_graph/tree/main"
[features]
extension-module = ["pyo3/extension-module"]
[lib]
name = "pysochrone"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "osm_graph"
path = "src/main.rs"
[dependencies.geo]
version = "0.28.0"
[dependencies.geohash]
version = "0.13.0"
[dependencies.geojson]
version = "0.24.1"
[dependencies.lazy_static]
version = "1.4.0"
[dependencies.lru]
version = "0.12.2"
[dependencies.osmpbf]
version = "0.3"
[dependencies.petgraph]
version = "0.6.4"
[dependencies.pyo3]
version = "0.20.2"
optional = true
[dependencies.quick-xml]
version = "0.31"
features = ["serialize"]
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.rstar]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = ["full"]