-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 1.09 KB
/
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
[package]
name = "strava-rs"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.68"
chrono = { version = "0.4.23", features = ["serde"] }
clap = { version = "4.1.4", features = ["derive"] }
crossterm = "0.27.0"
libsqlite3-sys = { version = ">=0.17.2, <0.27.0", features = ["bundled_bindings", "bundled"] }
env_logger = "0.10.0"
hyper = { version = "0.14.23", features = ["client", "http1"] }
log = "0.4.17"
open = "3.2.0"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
tokio = { version = "1.24.2", features = ["full"] }
url = "2.3.1"
xdg = "2.4.1"
polyline = "0.10.1"
geo-types = "0.7.10"
geoutils = "0.5.1"
strum = { version = "0.25.0", features = ["derive"] }
tui = { package = "ratatui", version = "0.23.0", features = ["all-widgets"]}
tui-input = "0.8.0"
confy = "0.5.1"
hyper-rustls = "0.24.1"
sqlx = { version = "0.7.1", features = ["sqlx-sqlite", "sqlite", "runtime-tokio", "chrono"] }
tui-logger = { version = "0.9.6", features = ["ratatui", "ratatui-support"] }