forked from umccr/htsget-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 1.51 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
[package]
name = "htsget-config"
version = "0.7.1"
rust-version = "1.70"
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>"]
edition = "2021"
description = "Used to configure htsget-rs by using a config file or reading environment variables."
license = "MIT"
documentation = "https://github.com/umccr/htsget-rs/blob/main/htsget-config/README.md"
homepage = "https://github.com/umccr/htsget-rs/blob/main/htsget-config/README.md"
repository = "https://github.com/umccr/htsget-rs"
[features]
s3-storage = []
url-storage = ["hyper"]
default = []
[dependencies]
thiserror = "1.0"
async-trait = "0.1"
noodles = { version = "0.50", features = ["core"] }
serde = { version = "1.0", features = ["derive"] }
serde_with = "3.0"
serde_regex = "1.1"
regex = "1.8"
figment = { version = "0.10", features = ["env", "toml"] }
clap = { version = "4.3", features = ["derive", "env", "cargo"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter", "ansi", "json"] }
toml = "0.7"
http = "0.2"
http-serde = "1.1"
rustls-pemfile = "1.0"
rustls = "0.21"
rustls-native-certs = "0.6"
hyper-rustls = { version = "0.24", features = ["rustls-native-certs", "http2", "http1"] }
hyper = { version = "0.14", features = ["http1", "http2", "client"], optional = true }
[dev-dependencies]
serde_json = "1.0"
figment = { version = "0.10", features = ["test"] }
tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] }
tempfile = "3.6"
rcgen = "0.11"