49 releases (25 breaking)

0.27.5 Dec 20, 2024
0.27.3 Sep 4, 2024
0.27.2 May 27, 2024
0.27.0 Mar 26, 2024
0.2.0 Oct 8, 2016

#3 in HTTP server

Download history 1992818/week @ 2024-09-27 2021717/week @ 2024-10-04 1972741/week @ 2024-10-11 2087521/week @ 2024-10-18 2046682/week @ 2024-10-25 1951912/week @ 2024-11-01 2032599/week @ 2024-11-08 2108154/week @ 2024-11-15 1811224/week @ 2024-11-22 1867201/week @ 2024-11-29 2313303/week @ 2024-12-06 2108819/week @ 2024-12-13 1060832/week @ 2024-12-20 1031465/week @ 2024-12-27 1977518/week @ 2025-01-03 2444465/week @ 2025-01-10

6,902,001 downloads per month
Used in 2,886 crates (1,012 directly)

Apache-2.0 OR ISC OR MIT

44KB
790 lines

hyper-rustls

This is an integration between the Rustls TLS stack and the hyper HTTP library.

Build Status Crate Documentation

Release history

Release history can be found on GitHub.

License

hyper-rustls is distributed under the following three licenses:

  • Apache License version 2.0.
  • MIT license.
  • ISC license.

These are included as LICENSE-APACHE, LICENSE-MIT and LICENSE-ISC respectively. You may use this software under the terms of any of these licenses, at your option.

Running examples

server

cargo run --example server

client

cargo run --example client "https://docs.rs/hyper-rustls/latest/hyper_rustls/"

Crate features

This crate exposes a number of features to add support for different portions of hyper-util, rustls, and other dependencies.

Feature flag Enabled by default Description
aws-lc-rs yes Enables use of the AWS-LC backend for rustls
http1 yes Enables HTTP/1 support in hyper-util
http2 no Enables HTTP/2 support in hyper-util
webpki-tokio no Uses a compiled-in set of root certificates trusted by Mozilla (via webpki-roots)
native-tokio yes Use the platform's native certificate store at runtime (via rustls-native-certs)
rustls-platform-verifier no Use the operating system's verifier for certificate verification (via rustls-platform-verifier)
ring no Enables use of the ring backend for rustls
tls12 yes Enables support for TLS 1.2 (only TLS 1.3 supported when disabled)
logging yes Enables logging of protocol-level diagnostics and errors via log
fips no Enables support for using a FIPS 140-3 compliant backend via AWS-LC (enables aws-lc-rs feature)

Dependencies

~12–36MB
~805K SLoC