-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (56 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
69 lines (56 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[workspace]
members = [
"tp-core",
"tp-cli",
"tp-py",
"tp-webapp",
]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2021"
description = "A library to help post process GNSS coordinates onto a railway network."
authors = ["Mathias Vanden Auweele <mathias@matdata.eu>"]
license = "Apache-2.0"
homepage = "https://github.com/Matdata-eu/tp-lib"
repository = "https://github.com/Matdata-eu/tp-lib"
categories = ["command-line-utilities", "science::geo"]
readme = "README.md"
[workspace.dependencies]
# Geospatial
geo = "0.28"
proj4rs = "0.1.9"
crs-definitions = "0.3.1"
rstar = "0.12"
geojson = "0.24"
# Graph algorithms
petgraph = "0.6"
# Data processing
arrow = "53.0"
polars = "0.44"
csv = "1.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Temporal
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# CLI
clap = { version = "4.5", features = ["derive"] }
# Python bindings
pyo3 = { version = "0.21", features = ["extension-module"] }
# Testing
criterion = { version = "0.5", features = ["html_reports"] }
quickcheck = "1.0"
# Web server
axum = "0.8"
tokio = { version = "1", features = ["full"] }
rust-embed = { version = "8", features = ["debug-embed"] }
open = "5"
[profile.dev]
debug = 2
opt-level = 0
split-debuginfo = "unpacked"