forked from reown-com/hyper-alpn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 828 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 828 Bytes
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
[package]
name = "hyper-alpn"
version = "0.4.1"
authors = [
"Harry Bairstow <harry@walletconnect.com>",
"Julius de Bruijn <julius@nauk.io>"
]
license = "MIT"
readme = "README.md"
description = "An ALPN implementation to be used with Hyper 0.12"
keywords = ["hyper", "alpn", "http2", "h2"]
repository = "https://github.com/walletconnect/hyper-alpn.git"
homepage = "https://github.com/walletconnect/hyper-alpn"
documentation = "https://docs.rs/hyper-alpn/"
edition = "2021"
[dependencies]
log = "0.4"
rustls = "0.20"
rustls-pemfile = "1.0.1"
webpki-roots = "0.22"
tokio-rustls = "0.23"
tokio = { version = "1", features = ["net", "rt"] }
hyper = { version = "0.14", features = ["client", "http2", "h2"] }
[dev-dependencies]
openssl = "0.10"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net"] }