-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (75 loc) · 2.16 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
[package]
name = "annonars"
version = "0.42.3"
edition = "2021"
authors = ["Manuel Holtgrewe <[email protected]>"]
description = "Genome annotation based on Rust and RocksDB"
license = "Apache-2.0"
repository = "https://github.com/varfish-org/annonars"
readme = "README.md"
autobins = false
exclude = ["/tests"]
[lib]
name = "annonars"
path = "src/lib.rs"
[[bin]]
name = "annonars"
path = "src/main.rs"
[dependencies]
actix-web = "4.9.0"
anyhow = "1.0"
bgzip = "0.3"
bio = "2.0.3"
biocommons-bioutils = "0.1.0"
boolvec = "0.2"
byteorder = "1.4"
chrono = { version = "0.4", features = ["serde"] }
clap-verbosity-flag = "3.0"
clap = { version = "4.5", features = ["derive", "env"] }
csv = "1.3"
enum-map = { version = "2.7.3", features = ["serde"] }
env_logger = "0.11"
erased-serde = "0.4.2"
flate2 = "1.0"
indexmap = { version = "2.7", features = ["serde"] }
indicatif = { version = "0.17", features = ["rayon"] }
itertools = "0.13.0"
log = "0.4"
pbjson = "0.7"
pbjson-types = "0.7"
prost = "0.13"
rayon = "1.8"
rocksdb-utils-lookup = "0.4"
rocksdb = { version = "0.22", features = ["multi-threaded-cf"] }
rustc-hash = "2.1.0"
serde_json = { version = "1.0", features = ["preserve_order"] }
serde = { version = "1.0", features = ["derive"] }
serde_with = { version = "3.11", features = ["alloc", "macros", "indexmap_2"], default-features = false }
serde_yaml = "0.9"
strum = { version = "0.26", features = ["strum_macros", "derive"] }
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = "0.3"
utoipa-swagger-ui = { version = "8.0", features = ["actix-web"] }
utoipa = { version = "5.2", features = ["actix_extras", "chrono", "indexmap", "preserve_order", "yaml"] }
[dependencies.noodles]
version = "0.77.0"
features = ["bed", "bgzf", "core", "csi", "gff", "tabix", "vcf"]
[build-dependencies]
anyhow = "1.0"
pbjson-build = "0.7"
prost-build = "0.13"
[dev-dependencies]
insta = { version = "1.41", features = ["yaml"] }
log = "0.4"
pretty_assertions = "1.4"
rstest = "0.23.0"
temp_testdir = "0.2"
test-log = "0.2"
tracing-subscriber = "0.3"
tracing-test = "0.2.4"
# Compile insta with full optimization.
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3