[[bench]]
harness = false
name = "graph"
path = "benches/graph.rs"
[dependencies.petgraph]
version = "0.6.5"
[dependencies.reqwest]
features = ["json", "blocking"]
version = "0.12.7"
[dependencies.serde]
features = ["derive"]
version = "1.0.210"
[dependencies.serde_json]
version = "1.0.128"
[dependencies.tokio]
features = ["rt-multi-thread", "fs"]
version = "1.40"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.plotters]
version = "0.3.6"
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.tokio]
features = ["macros"]
version = "1.40"
[[example]]
name = "astar"
path = "examples/astar.rs"
[[example]]
name = "parse_graph_from_place"
path = "examples/parse_graph_from_place.rs"
[[example]]
name = "parse_graph_from_polyline"
path = "examples/parse_graph_from_polyline.rs"
[[example]]
name = "parse_nodes"
path = "examples/parse_nodes.rs"
[[example]]
name = "parse_ways"
path = "examples/parse_ways.rs"
[[example]]
name = "query"
path = "examples/query.rs"
[[example]]
name = "save_load"
path = "examples/save_load.rs"
[lib]
name = "osmgraph"
path = "src/lib.rs"
[package]
authors = ["NoahSchiro"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings", "data-structures"]
description = "Convert OSM queries into graphs."
documentation = "https://crates.io/crates/osmgraph"
edition = "2021"
exclude = ["/assets/*"]
keywords = ["map", "api", "graph", "data-structure"]
license = "MIT"
name = "osmgraph"
readme = "README.md"
repository = "https://github.com/NoahSchiro/osmgraph"
version = "0.4.1"
[[test]]
name = "graph"
path = "tests/graph.rs"
[[test]]
name = "overpass_api"
path = "tests/overpass_api.rs"