-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (56 loc) · 1.94 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
[package]
name = "maccoys"
version = "0.1.0"
authors = ["Dirk Winkelhardt <dirk.winkelhardt@rub.de>"]
edition = "2021"
description = "Mass spectrometry search engine using MaCPepDB as search space."
repository = "https://github.com/medbioinf/maccoys"
homepage = "https://github.com/medbioinf/maccoys"
documentation = "https://github.com/medbioinf/maccoys"
license-file = "../LICENSE"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "maccoys"
path = "src/lib.rs"
[[bin]]
name = "maccoys"
path = "src/bin.rs"
[dependencies]
anyhow = { version = "1.0.75", features = ["backtrace"] }
async-stream = "0.3.5"
axum = {version = "0.7.4", features = ["multipart"]}
clap = { version = "4.4.6", features = ["derive"] }
csv = "1.3.0"
deadqueue = { version = "0.2.4", features = ["limited"] }
dihardts_omicstools = "2.0.3"
fallible-iterator = "0.3.0"
fancy-regex = "0.11.0"
futures = "0.3.28"
glob = "0.3.1"
indicatif = "0.17.7"
lazy_static = "1.4.0"
lzma-rs = "0.3.0"
# macpepdb = { path = "../macpepdb" }
macpepdb = { git = "https://github.com/medbioinf/macpepdb.git", rev = "fcf52f9009fbf049258428e9aad058b3985b6221" }
maccoys-exchange-entities = { git = "https://github.com/medbioinf/maccoys-exchange-entities", branch = "main" }
paste = "1.0.15"
polars = { version = "0.35.4", features = ["csv", "cum_agg", "lazy", "strings", "serde", "json"] }
pyo3 = { version = "0.22.0", features = ["auto-initialize"] }
rand = "0.8.5"
reqwest = { version = "0.11.22", features = ["blocking", "json", "stream", "multipart"] }
rustis = { version = "0.13.3", features = ["tokio-runtime"] }
scylla = "0.8.1"
serde = "1.0.189"
serde_json = "1.0.107"
signal-hook = "0.3.17"
tokio = "1.33.0"
tokio-util = "0.7.11"
toml = "0.8.14"
tower-http = { version = "0.5.0", features = ["cors", "trace"] }
tracing = "0.1.39"
tracing-appender = "0.2.3"
tracing-indicatif = "0.3.5"
tracing-subscriber = "0.3.17"
urlencoding = "2.1.3"
uuid = "1.9.0"
http = "1.1.0"