-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
26 lines (24 loc) · 922 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
[package]
name = "rodalies-cli"
version = "1.2.4"
edition = "2021"
authors = ["Gerard C.L. <gerardcl@gmail.com>"]
license = "BSD-3-Clause"
description = "CLI for searching train timetables of the trains of Rodalies de la Generalitat de Catalunya"
readme = "README.md"
homepage = "https://github.com/gerardcl/rodalies-cli"
repository = "https://github.com/gerardcl/rodalies-cli"
keywords = ["cli", "timetables", "trains", "rodalies", "catalunya"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.5", features = ["unicode", "cargo", "color", "suggestions", "env", "wrap_help"] }
surf = { version = "2.3", default-features = false, features = ["h1-client-rustls"] }
tokio = { version = "1.40", features = ["full"] }
scraper = "0.20"
chrono = { version = "0.4", features = []}
prettytable-rs = "0.10"
serde_json = "1.0"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tokio-test = "0.4"