forked from mattsse/crossref-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 943 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
33
[package]
name = "crossref"
version = "0.2.2"
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/crossref.rs"
required-features =["cli"]
[dependencies]
reqwest = {version = "0.12.4", features = ["blocking"]}
serde = { version = "1.0", features = ["derive"] }
failure = "0.1"
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
structopt = { version = "0.2", optional = true }
url = "1.7"
pretty_env_logger = { version = "0.3", optional = true }
[features]
cli = ["structopt", "pretty_env_logger"]