#hyper #http2 #alpn #h2 #hyper-client

hyper-alpn

Hyper 0.12版本可用的ALPN实现

17个版本

0.4.1 2023年6月5日
0.4.0 2022年8月15日
0.3.0 2021年2月6日
0.2.1 2019年12月16日
0.1.4 2018年6月28日

#1110网络编程

Download history 386/week @ 2024-03-13 388/week @ 2024-03-20 290/week @ 2024-03-27 405/week @ 2024-04-03 380/week @ 2024-04-10 605/week @ 2024-04-17 526/week @ 2024-04-24 331/week @ 2024-05-01 343/week @ 2024-05-08 214/week @ 2024-05-15 312/week @ 2024-05-22 340/week @ 2024-05-29 304/week @ 2024-06-05 228/week @ 2024-06-12 192/week @ 2024-06-19 99/week @ 2024-06-26

856 每月下载量
用于 2 个crate(通过 rustdns

MIT 协议

14KB
212

hyper-alpn

CI Status MIT licensed crates.io

提供与hyper一起使用的ALPN连接器。

文档

要求

需要Tokio执行器版本1或更高版本和Rust编译器版本1.56.0或更高版本。


lib.rs:

hyper-alpn

用于hyper的Alpn连接器。

示例

use hyper_alpn::AlpnConnector;
use hyper::Client;

fn main() {
    let mut builder = Client::builder();
    builder.http2_only(true);

    let client: Client<AlpnConnector> = builder.build(AlpnConnector::new());
}

依赖项

~14–28MB
~449K SLoC