forked from mattsse/crossref-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 957 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
34
[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 = "2021"
[badges]
travis-ci = { repository = "MattsSe/crossref-rs", branch = "master" }
[[bin]]
name = "crossref"
path = "src/crossref.rs"
required-features = ["cli"]
[dependencies]
reqwest = { version = "0.12", features = ["blocking"] }
serde = { version = "1.0", features = ["derive"] }
failure = "0.1.8"
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
structopt = { version = "0.3", optional = true }
url = "2.5"
pretty_env_logger = { version = "0.5", optional = true }
tokio = "1"
[features]
cli = ["structopt", "pretty_env_logger"]