-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 917 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
[package]
name = "spt_cli"
version = "0.1.5"
edition = "2021"
license = "MIT"
keywords = ["cli", "public-transport"]
categories = ["command-line-utilities"]
description = "command line utility to display connections with public transport"
homepage = "https://github.com/sacovo/public-transport-cli"
repository = "https://github.com/sacovo/public-transport-cli"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
derive_builder = "0.10.2"
dirs = "4.0.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
anyhow = "1.0"
time = {version = "0.3.6", features = ["parsing", "serde"]}
chrono = {version="0.4", features = ["serde"]}
pad = "0.1.6"
clap = { version = "3.0.10", features = ["derive"] }
colored = "2.0.0"
once_cell = "1.9.0"
if_chain = "1.0.2"