-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 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
[package]
name = "mediathekviewweb"
version = "0.4.0"
edition = "2021"
description = "Client for the MediathekViewWeb API"
repository = "https://github.com/d-k-bo/mediathekviewweb-rs"
authors = ["d-k-bo <d-k-bo@mailbox.org>"]
license = "MIT"
categories = ["api-bindings"]
keywords = ["mediathek", "mediathekview", "mediathekviewweb", "ard", "zdf"]
[features]
default = ["native-tls"]
# Enable the `native-tls` feature on reqwest
native-tls = ["reqwest/native-tls"]
# Enable the `rustls-tls` feature on reqwest
rustls-tls = ["reqwest/rustls-tls"]
[dependencies]
reqwest = { version = "0.12.2", default-features = false, features = ["json"] }
serde = { version = "1.0.197", features = ["derive"] }
[dev-dependencies]
tokio = { version = "1.36.0", features = ["macros", "rt"] }
# see https://stackoverflow.com/a/61417700/14750360
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]