Files
trutls/Cargo.toml

21 lines
550 B
TOML
Raw Normal View History

2024-04-10 21:59:04 +01:00
[package]
name = "trutls"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-04-11 08:29:55 +01:00
h2 = "0.4.4"
http-body-util = "0.1.1"
2024-04-10 21:59:04 +01:00
hyper = {version = "1", features=["full"]}
2024-04-11 08:29:55 +01:00
hyper-rustls = {version = "0.27.1", features=["http2"]}
2024-04-10 21:59:04 +01:00
hyper-util = {version = "0.1.2", features=["full"]}
2024-04-11 08:29:55 +01:00
log = "0.4.21"
rustls-pki-types = "1.4.1"
2024-04-10 21:59:04 +01:00
tokio = { version = "1", features = ["full"] }
2024-04-11 08:29:55 +01:00
tokio-rustls = "0.26.0"
2024-04-10 21:59:04 +01:00
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
2024-04-11 08:29:55 +01:00
webpki-roots = "0.26.1"