[package]
edition = "2024"
rust-version = "1.85"
name = "valhalla"
version = "0.6.28"
build = "build.rs"
exclude = [
"**/.*",
"**/.github/*",
"**/test/*",
"**/tests/*",
"**/doctest/*",
"**/gtest/*",
"**/googletest/*",
"**/googlemock/*",
"**/doc/*",
"**/docs/*",
"**/bench/*",
"**/benches/*",
"**/benchmarks/*",
"**/example/*",
"**/examples/*",
"valhalla/docker",
"valhalla/CHANGELOG.md",
"valhalla/run_route_scripts",
"valhalla/src/bindings",
"valhalla/src/mjolnir",
"valhalla/src/valhalla_*",
"valhalla/taginfo.json",
"valhalla/test_requests",
"valhalla/third_party/**/*.md",
"valhalla/third_party/cxxopts",
"valhalla/third_party/dirent",
"valhalla/third_party/fastcov",
"valhalla/third_party/just_gtfs",
"valhalla/third_party/libosmium",
"valhalla/third_party/nanobind",
"valhalla/third_party/rapidjson/bin",
"valhalla/third_party/tz/*.html",
"valhalla/third_party/tz/NEWS",
"valhalla/third_party/unordered_dense/data",
"valhalla/third_party/unordered_dense/scripts",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings for Valhalla routing engine"
readme = "README.md"
keywords = [
"geo",
"routing",
"navigation",
"ffi",
"valhalla",
]
license = "MIT"
repository = "https://github.com/kinkard/valhalla-rs"
[lib]
name = "valhalla"
path = "src/lib.rs"
[dependencies.bitflags]
version = "2"
[dependencies.cxx]
version = "=1.0.194"
features = ["c++20"]
[dependencies.prost]
version = "0.14"
[dev-dependencies.criterion]
version = "0.7"
default-features = false
[dev-dependencies.miniserde]
version = "0.1"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.cmake]
version = "0.1"
[build-dependencies.cxx-build]
version = "=1.0.194"
[build-dependencies.miniserde]
version = "0.1"
[build-dependencies.pkg-config]
version = "0.3"
[build-dependencies.prost-build]
version = "0.14"
[profile.bench]
debug = "line-tables-only"