-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (26 loc) · 865 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
[package]
name = "fit2gpx"
version = "0.5.2"
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.27", features = ["derive", "env"] }
env_logger = "0.11.6"
fit_file = "0.6.0"
geo-types = "0.7.15"
gpx = "0.10.0"
log = "0.4.25"
rayon = "1.10.0"
srtm_reader = { version = "0.4.0", optional = true }
time = { version = "0.3.37", default-features = false }
[patch.crates-io]
srtm_reader = { git = "https://github.com/jeromeschmied/srtm_reader" }
[features]
default = ["elevation"]
elevation = ["dep:srtm_reader"]