forked from umccr/htsget-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 1.63 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
[package]
name = "htsget-lambda"
version = "0.4.11"
rust-version = "1.70"
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-config/s3-storage", "htsget-search/s3-storage", "htsget-http/s3-storage", "htsget-test/s3-storage"]
url-storage = ["htsget-config/url-storage", "htsget-search/url-storage", "htsget-http/url-storage", "htsget-test/url-storage"]
default = []
[dependencies]
tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.4", features = ["cors"] }
lambda_http = { version = "0.8" }
lambda_runtime = { version = "0.8" }
htsget-config = { version = "0.7.1", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.6.3", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.4.9", path = "../htsget-http", default-features = false }
htsget-test = { version = "0.5.2", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false }
serde = { version = "1.0" }
serde_json = "1.0"
mime = "0.3"
regex = "1.8"
tracing = "0.1"
tracing-subscriber = "0.3"
bytes = "1.4"
[dev-dependencies]
async-trait = "0.1"
query_map = { version = "0.6", features = ["url-query"] }
tempfile = "3.6"