[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 "] 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"]