[[bin]]
name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"
[build-dependencies.uniffi]
features = ["build"]
optional = true
version = "0.30"
[dependencies.base64]
optional = true
version = "0.21"
[dependencies.futures]
optional = true
version = "0.3"
[dependencies.geo]
version = "0.29"
[dependencies.log]
version = "0.4"
[dependencies.once_cell]
version = "1.19"
[dependencies.rayon]
optional = true
version = "1.10"
[dependencies.reqwest]
default-features = false
features = ["json", "rustls-tls"]
optional = true
version = "0.11"
[dependencies.rmp-serde]
optional = true
version = "1.1"
[dependencies.rstar]
version = "0.12"
[dependencies.rusqlite]
features = ["bundled"]
optional = true
version = "0.31"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
features = ["rt-multi-thread", "sync"]
optional = true
version = "1"
[dependencies.uniffi]
features = ["cli"]
optional = true
version = "0.30"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros"]
version = "1"
[[example]]
name = "basic_matching"
path = "examples/basic_matching.rs"
[[example]]
name = "batch_grouping"
path = "examples/batch_grouping.rs"
[[example]]
name = "http_benchmark"
path = "examples/http_benchmark.rs"
[features]
default = ["ffi", "parallel", "http", "persistence"]
ffi = ["uniffi", "parallel"]
http = ["reqwest", "tokio", "futures", "base64"]
parallel = ["rayon"]
persistence = ["rusqlite", "rmp-serde"]
[lib]
crate-type = ["rlib", "staticlib", "cdylib"]
name = "tracematch"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "science::geo"]
description = "High-performance GPS route matching and activity analysis"
edition = "2021"
keywords = ["gps", "route", "matching", "geospatial", "fitness"]
license = "Apache-2.0"
name = "tracematch"
publish = true
readme = "README.md"
repository = "https://github.com/evanjt/route-matcher"
version = "0.0.1"
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
strip = false
[profile.release-mobile]
inherits = "release"
panic = "abort"
[target.'cfg(target_os = "android")'.dependencies.android_logger]
version = "0.14"