-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
48 lines (44 loc) · 1.93 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
[package]
name = "htsget-lambda"
version = "0.5.2"
rust-version = "1.75"
authors = ["Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A cloud-based instance of htsget-rs, using AWS Lambda, which can be configured using htsget-config."
documentation = "https://github.com/umccr/htsget-rs/blob/main/htsget-lambda/README.md"
homepage = "https://github.com/umccr/htsget-rs/blob/main/htsget-lambda/README.md"
repository = "https://github.com/umccr/htsget-rs"
[features]
s3-storage = ["htsget-axum/s3-storage", "htsget-config/s3-storage", "htsget-search/s3-storage", "htsget-http/s3-storage", "htsget-test/s3-storage"]
url-storage = ["htsget-axum/url-storage", "htsget-config/url-storage", "htsget-search/url-storage", "htsget-http/url-storage", "htsget-test/url-storage"]
experimental = [
"htsget-axum/experimental",
"htsget-config/experimental",
"htsget-search/experimental",
"htsget-http/experimental",
"htsget-test/experimental"
]
default = []
[dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.6", features = ["cors"] }
rustls = "0.23"
lambda_http = { version = "0.13" }
lambda_runtime = { version = "0.13" }
serde = { version = "1" }
serde_json = "1"
mime = "0.3"
regex = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
bytes = "1"
htsget-config = { version = "0.12.0", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.9.1", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.5.1", path = "../htsget-http", default-features = false }
htsget-test = { version = "0.7.1", path = "../htsget-test", features = ["http"], default-features = false }
htsget-axum = { version = "0.2.2", path = "../htsget-axum", default-features = false }
[dev-dependencies]
async-trait = "0.1"
query_map = { version = "0.7", features = ["url-query"] }
tempfile = "3"