-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (26 loc) · 940 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
31
32
[package]
name = "tagesschau"
version = "0.2.6"
edition = "2021"
license = "MIT"
description = "A client library for interacting with the Tagesschau's `/api2/news` endpoint."
repository = "https://github.com/RedCommander735/Tagesschau.rs"
readme = "README.md"
categories = ["api-bindings"]
keywords = ["tagesschau", "news", "ard", "zdf", "async"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11" }
serde = { version = "1.0.171", features = ["derive"] }
time = { version = "0.3.26", features = ["local-offset", "formatting", "macros", "serde", "parsing"] }
serde_json = "1.0.105"
thiserror = "1.0.47"
url = "2.5.0"
[features]
blocking = ["reqwest/blocking"]
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]