crossref 0.1.1

Implementation of the Crossref API
Documentation
[package]
name = "crossref"
version = "0.1.1"
authors = ["matthiasseitz <matthias.seitz@tum.de>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["api", "web", "literature", "doi"]
repository = "https://github.com/MattsSe/crossref-rs"
description= "Implementation of the Crossref API"
documentation = "https://docs.rs/crossref/"
categories = ["api-bindings", "science"]
edition = "2018"

[badges]
travis-ci = { repository = "MattsSe/crossref-rs", branch = "master" }

[[bin]]
name = "crossref"
path = "src/main.rs"
required-features =["cli"]

[dependencies]
reqwest = "0.9"
serde_derive = "1.0"
serde = "1.0"
failure = "0.1"
serde_json = "1.0"
chrono =  {version = "0.4", features = ["serde"] }
hyper-tls = { version = "0.3", optional= true }
hyper = { version = "0.12", optional = true }
structopt =  { version =  "0.2", optional = true }
url = "1.7"

[features]
client = ["hyper", "hyper-tls"]
cli = ["structopt"]