-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (24 loc) · 820 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
[package]
name = "fit2gpx"
version = "0.4.0"
edition = "2021"
authors = ["Jeromos Kovács <iitsnotme214@proton.me>"]
description = ".fit to .gpx converter"
keywords = ["garmin", "fit", "cli", "gpx"]
categories = ["command-line-interface"]
repository = "https://github.com/jeromeschmied/fit2gpx-rs"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.8", features = ["derive"] }
fit_file = "0.6.0"
geo-types = "0.7.13"
gpx = "0.10.0"
rayon = "1.10.0"
srtm_reader = { version = "0.3.0", optional = true }
time = { version = "0.3.36", default-features = false }
[patch.crates-io]
srtm_reader = { git = "https://github.com/jeromeschmied/srtm_reader" }
[features]
default = ["elevation"]
elevation = ["dep:srtm_reader"]