-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
76 lines (71 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
authors = ["Jingcheng Yang <yjcyxky@163.com>"]
documentation = "https://github.com/yjcyxky/biomedgps/blob/master/README.md"
edition = "2021"
homepage = "https://github.com/yjcyxky/biomedgps"
keywords = ["biomedgps", "drug-repurposing", "knowledge-graph"]
name = "biomedgps"
readme = "README.md"
repository = "https://github.com/yjcyxky/biomedgps"
version = "0.3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "biomedgps"
path = "src/bin/biomedgps.rs"
[[bin]]
name = "biomedgps-cli"
path = "src/bin/biomedgps-cli.rs"
[dependencies]
anyhow = "1.0.71"
chrono = { version = "0.4.31", features = ["serde"] }
dotenv = "0.15.0"
lazy_static = "1.4.0"
log = "0.4.17"
log4rs = "1.2.0"
poem = { version = "1.3.55", features = ["embed", "test"] }
poem-openapi = { version = "2.0.26", features = [
"swagger-ui",
"chrono",
"uuid"
] }
sqlx = { version = "0.6.3", features = [
"postgres",
"macros",
"runtime-tokio-rustls",
"migrate",
"chrono"
] }
include_dir = "0.7.3"
regex = "1"
csv = "1.1.6"
tempfile = "3.2.0"
neo4rs = "0.6.2"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = { version = "1.0.96", features = ["raw_value"] }
validator = { version = "0.16.1", features = ["derive"] }
structopt = { version = "0.3.26", default-features = false }
tokio = { version = "1.28.2", features = [
"rt-multi-thread",
"macros",
"signal"
] }
uuid = { version = "1.3.3", features = ["serde", "v4"] }
rust-embed = "6.7.0"
custom_error = "1.9.2"
byteorder = "1"
bytes = "1"
postgres = { version = "0.19.5" }
futures = "0.3.29"
url = "2.4.0"
jsonwebtoken = { version = "9.2.0" }
openssl = { version = "0.10.36", features = ["vendored"] }
hmac = "0.12.1"
reqwest = { version = "0.11.6", features = ["json"] }
base64 = "0.21.5"
sha2 = "0.10.7"
itertools = "0.12.0"
# Models
openai-api-rs = "2.1.4"
# Algorithms
kiddo = "2.1.1" # for KNN
polars = { version = "0.33.2", features = ["csv", "lazy"] }