[package]
edition = "2024"
name = "tracematch"
version = "0.1.0"
authors = ["Evan Thomas <evan@evanjt.com>"]
build = false
exclude = ["tests/fixtures/raw_traces"]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance GPS route matching and activity analysis algorithms"
readme = "README.md"
keywords = [
"gps",
"route",
"matching",
"geospatial",
"fitness",
]
categories = [
"algorithms",
"science::geo",
]
license = "Apache-2.0"
repository = "https://github.com/evanjt/tracematch"
[features]
default = ["parallel"]
parallel = ["rayon"]
[lib]
name = "tracematch"
crate-type = ["rlib"]
path = "src/lib.rs"
[[example]]
name = "route_grouping"
path = "examples/route_grouping.rs"
[[example]]
name = "route_matching"
path = "examples/route_matching.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "geo_utils"
path = "tests/geo_utils.rs"
[[test]]
name = "grouping"
path = "tests/grouping.rs"
[[test]]
name = "heatmap"
path = "tests/heatmap.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "matching"
path = "tests/matching.rs"
[[test]]
name = "section_detection"
path = "tests/section_detection.rs"
[[test]]
name = "section_manipulation"
path = "tests/section_manipulation.rs"
[[test]]
name = "sections"
path = "tests/sections.rs"
[[test]]
name = "union_find"
path = "tests/union_find.rs"
[[bench]]
name = "iai_benchmarks"
path = "benches/iai_benchmarks.rs"
harness = false
[[bench]]
name = "route_matching"
path = "benches/route_matching.rs"
harness = false
[[bench]]
name = "section_detection"
path = "benches/section_detection.rs"
harness = false
[dependencies.geo]
version = "0.29"
[dependencies.log]
version = "0.4"
[dependencies.rayon]
version = "1.10"
optional = true
[dependencies.rstar]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.iai-callgrind]
version = "0.14"
[dev-dependencies.serde_json]
version = "1.0"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
strip = false
[profile.release-mobile]
panic = "abort"
inherits = "release"