-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
59 lines (51 loc) · 1.85 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
[package]
name = "htsget-search"
version = "0.9.1"
rust-version = "1.75"
authors = ["Christian Perez Llamas <chrispz@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
edition = "2021"
description = "The primary mechanism by which htsget-rs interacts with, and processes bioinformatics files. It does this by using noodles to query files and their indices."
license = "MIT"
documentation = "https://github.com/umccr/htsget-rs/blob/main/htsget-search/README.md"
homepage = "https://github.com/umccr/htsget-rs/blob/main/htsget-search/README.md"
repository = "https://github.com/umccr/htsget-rs"
[features]
s3-storage = [
"htsget-storage/s3-storage",
"htsget-config/s3-storage",
"htsget-test/s3-storage",
"htsget-test/aws-mocks"
]
url-storage = [
"htsget-storage/url-storage",
"htsget-config/url-storage",
"htsget-test/url-storage"
]
experimental = [
"htsget-storage/experimental",
"htsget-config/experimental",
"htsget-test/experimental"
]
default = []
[dependencies]
# Async
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
futures = { version = "0.3" }
futures-util = "0.3"
async-trait = "0.1"
# Noodles
noodles = { version = "0.83", features = ["async", "core", "bgzf", "bam", "bcf", "cram", "csi", "sam", "tabix", "vcf"] }
# Error control, tracing, config
thiserror = "1"
tracing = "0.1"
htsget-config = { version = "0.12.0", path = "../htsget-config", default-features = false }
htsget-storage = { version = "0.2.1", path = "../htsget-storage", default-features = false }
htsget-test = { version = "0.7.1", path = "../htsget-test", features = ["http"], default-features = false }
[dev-dependencies]
tempfile = "3"
http = "1"
criterion = { version = "0.5", features = ["async_tokio"] }
[[bench]]
name = "search-benchmarks"
harness = false
path = "benches/search_benchmarks.rs"