-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1.39 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "papers"
version = "0.1.0"
authors = ["Magnus Manske <magnusmanske@googlemail.com>"]
edition = "2021"
description = "A library to allow creation and updates of Wikidata items for scientific publications, authors, and related info"
repository = "https://github.com/magnusmanske/papers"
keywords = ["publications", "papers", "science", "wikidata"]
categories = ["api-bindings", "science"]
license = "MIT"
include = ["**/*.rs", "Cargo.toml"]
[dependencies]
serde_json = "1"
mysql = { version = "16", features = ["ssl"] }
reqwest = { version = "*", features = ["json"] }
config = "*"
regex = "1"
lazy_static = "1"
chrono = "*"
rayon = "*"
tokio = { version = "^1", features = ["full", "rt-multi-thread"] }
futures = "*"
async-trait = "*"
anyhow = "*"
rand = "*"
#crossref = "*"
#crossref = { git = "https://github.com/MattsSe/crossref-rs" }
crossref = { git = "https://github.com/magnusmanske/crossref-rs", branch = "async" }
#semanticscholar = "*"
semanticscholar = { git = "https://github.com/magnusmanske/semanticscholar" }
#orcid="*"
orcid = { git = "https://github.com/magnusmanske/orcid_rs" }
#pubmed="*"
pubmed = { git = "https://github.com/magnusmanske/pubmed_rs" }
#pubmed = { path='../pubmed' }
#wikibase = { path='../wikibase_rs' }
#wikibase = { git="https://gitlab.com/tobias47n9e/wikibase_rs",branch = "rayon"}
wikibase = { git = "https://gitlab.com/tobias47n9e/wikibase_rs" }
#wikibase = "*"