forked from Tanja-4732/digi_5_school
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 950 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 = "d5s"
version = "0.0.0"
edition = "2021"
authors = ["Tanja <[email protected]>"]
repository = "https://github.com/Tanja-4732/digi_5_school"
license = "AGPL-3.0-or-later"
# keywords = []
# categories = []
include = ["/src", "/Cargo.toml", "/README.md", "/LICENSE.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
bytes = { version = "1.5.0", features = ["serde"] }
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.6", features = ["derive", "wrap_help", "unicode", "string"] }
inquire = "0.6.2"
lazy_static = "1.4.0"
regex = "1.10.0"
reqwest = { version = "0.11.22", features = ["cookie_crate", "cookie_store", "cookies", "json", "serde_json", "tokio-rustls"] }
reqwest_cookie_store = "0.6.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
tokio = { version = "1.33.0", features = ["full"] }