mangadex-api 0.2.3

Unofficial client/wrapper for the MangaDex API
Documentation
[package]
name = "mangadex-api"
version = "0.2.3"
authors = ["gondolyr <gondolyr@tutanota.com>"]
edition = "2018"
description = "Unofficial client/wrapper for the MangaDex API"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["api", "bindings", "client", "mangadex", "wrapper"]
categories = ["api-bindings"]
repository = "https://gitlab.com/gondolyr/mangadex-api"
documentation = "https://gondolyr.gitlab.io/mangadex-api/mangadex_api"
exclude = [
    "**/openapi.yaml"
]

[lib]
name = "mangadex_api"
path = "src/lib.rs"

[dependencies]
chrono = { version = "0.4", features = ["serde"], optional = true }
reqwest = { version = "0.11", features = ["cookies", "json"] }
scraper = "0.12"
serde = { version = "1.0", features = ["derive"] }

[features]
default = ["v2", "time"]
time = ["chrono"]
v2 = []

[dev-dependencies]
structopt = "0.3"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }