-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (27 loc) · 899 Bytes
/
Cargo.toml
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
[package]
name = "track2kml"
version = "0.4.2"
edition = "2021"
authors = [
"Alejandro Perea ([email protected])",
"Marco Castell ([email protected])",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["cli"]
[dependencies]
anyhow = "1.0.69"
quick-xml = { version = "0.27.1", features = ["serialize"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.96"
serde_path_to_error = "0.1.10"
thiserror = "1.0.38"
time = { version = "0.3.19", features = ["parsing", "formatting", "macros"] }
map_3d = { version = "0.1.5" }
courageous-format = { git = "https://github.com/COURAGEOUS-isf/format.git", tag = "v0.6.0+schema.0.4.0" }
[dev-dependencies]
anyhow = { version = "1.0.69", features = ["backtrace"] }
[profile.release]
strip = "debuginfo"
lto = "fat"
debug-assertions = false