-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (27 loc) · 913 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
[package]
name = "busterminal"
version = "1.1.4"
authors = ["tmn <pub@tmn.io>"]
description = """
A simple CLI for retrieving information from public transportation system in Norway
"""
documentation = "https://github.com/tmn/busterminal"
homepage = "https://github.com/tmn/busterminal"
repository = "https://github.com/tmn/busterminal"
keywords = ["publictransportation", "transportation", "entur", "norway"]
categories = ["command-line-utilities"]
edition = "2021"
readme = "README.md"
license = "Apache-2.0 "
[[bin]]
name = "busterminal"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = "0.11.18"
tokio = { version = "1.29.1", features = ["full"] }
serde = { version = "1.0.176", features = ["derive"] }
serde_json = "1.0.104"
clap = { version = "4.3.19", features = ["derive"] }
chrono = "0.4.26"
http = "0.2.9"