[package]
edition = "2021"
name = "tp-lib-core"
version = "0.0.6"
authors = ["Mathias Vanden Auweele <mathias@matdata.eu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for GNSS track axis projection with spatial indexing"
documentation = "https://docs.rs/tp-lib-core"
readme = "README.md"
keywords = [
"gnss",
"gps",
"railway",
"geospatial",
"projection",
]
categories = [
"science::geo",
"algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/Matdata-eu/tp-lib"
[features]
default = []
[lib]
name = "tp_lib_core"
path = "src/lib.rs"
[[test]]
name = "contract"
path = "tests/contract.rs"
[[test]]
name = "detections_anchor"
path = "tests/detections_anchor.rs"
[[test]]
name = "detections_coverage"
path = "tests/detections_coverage.rs"
[[test]]
name = "detections_filter"
path = "tests/detections_filter.rs"
[[test]]
name = "detections_load"
path = "tests/detections_load.rs"
[[test]]
name = "detections_provenance"
path = "tests/detections_provenance.rs"
[[test]]
name = "detections_resolve"
path = "tests/detections_resolve.rs"
[[test]]
name = "rinf_topology"
path = "tests/rinf_topology.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[[bench]]
name = "detections_overhead"
path = "benches/detections_overhead.rs"
harness = false
[[bench]]
name = "naive_baseline_bench"
path = "benches/naive_baseline_bench.rs"
harness = false
[[bench]]
name = "path_calculation_bench"
path = "benches/path_calculation_bench.rs"
harness = false
[[bench]]
name = "projection_bench"
path = "benches/projection_bench.rs"
harness = false
[dependencies.arrow]
version = "53.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.crs-definitions]
version = "0.3.1"
[dependencies.csv]
version = "1.3"
[dependencies.geo]
version = "0.28"
[dependencies.geojson]
version = "0.24"
[dependencies.petgraph]
version = "0.6"
[dependencies.polars]
version = "0.44"
[dependencies.proj4rs]
version = "0.1.9"
[dependencies.rstar]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.ureq]
version = "2.10"
features = ["json"]
[dependencies.url]
version = "2.5"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.quickcheck]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.24.0"