-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
92 lines (85 loc) · 2.53 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "varfish-server-worker"
version = "0.17.0"
authors = ["Manuel Holtgrewe <[email protected]>"]
description = "Rust-based worker for varfish-server"
license = "MIT"
repository = "https://github.com/bihealth/varfish-server-worker"
edition = "2021"
readme = "README.md"
rust-version = "1.70.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
annonars = "0.41"
anyhow = "1.0"
async-compression = { version = "0.4", features = ["tokio", "gzip"] }
aws-config = { version = "1.5", features = ["behavior-version-latest"] }
aws-sdk-s3 = { version = "1.51", features = ["behavior-version-latest"] }
base16ct = "0.2"
bio = "2.0"
biocommons-bioutils = "0.1"
byteorder = { version = "1.5", features = ["i128"] }
bytesize = "1.3"
byte-unit = "5.1"
chrono = { version = "0.4", features = ["serde"] }
clap-verbosity-flag = "3.0"
clap = { version = "4.5", features = ["derive", "help"] }
console = "0.15"
csv = "1.3"
derive_builder = { version = "0.20", features = ["clippy"] }
derive-new = "0.7.0"
enum-map = { version = "2.7", features = ["serde"] }
ext-sort = { version = "0.1", features = ["memory-limit", "bytesize"] }
fastrand = "2.3"
flate2 = "1.0"
futures = "0.3.31"
hgvs = "0.17.3"
indexmap = { version = "2.7", features = ["serde"] }
itertools = "0.13"
log = "0.4"
mehari = "0.29.6"
multimap = "0.10"
pbjson = "0.7"
pbjson-types = "0.7"
procfs = "0.17"
prost = "0.13.4"
rand = "0.8"
rand_core = "0.6"
rayon = "1.10"
regex = "1.11"
rocksdb-utils-lookup = "0.4"
rocksdb = { version = "0.22", features = ["multi-threaded-cf"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["serde_derive"] }
serde_with = { version = "3.11", features = ["indexmap_2"] }
shellexpand = "3.0"
strum_macros = "0.26"
strum = { version = "0.26", features = ["derive"] }
tempfile = "3.14.0"
thiserror = "2.0"
thousands = "0.2"
tokio = { version = "1.42", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = { version = "1.11", features = ["v4", "fast-rng", "serde"] }
[dependencies.noodles]
version = "0.77.0"
features = ["bgzf", "core", "csi", "tabix", "vcf", "bcf"]
[build-dependencies]
anyhow = "1.0"
prost-build = "0.13"
pbjson-build = "0.7.0"
[dev-dependencies]
async-std = { version = "1.13", features = ["attributes"] }
file_diff = "1.0"
float-cmp = "0.10"
hxdmp = "0.2.1"
insta = { version = "1.41", features = ["yaml"] }
pretty_assertions = "1.4"
rstest = "0.23.0"
serde_test = "1.0"
temp_testdir = "0.2"
tracing-test = "0.2"
[[bin]]
name = "varfish-server-worker"
path = "src/main.rs"