{"id":17604278,"url":"https://github.com/rustls/hyper-rustls","last_synced_at":"2025-05-13T23:07:44.771Z","repository":{"id":40425780,"uuid":"69809097","full_name":"rustls/hyper-rustls","owner":"rustls","description":"Integration between hyper HTTP library and rustls TLS stack","archived":false,"fork":false,"pushed_at":"2025-02-16T16:33:24.000Z","size":307,"stargazers_count":322,"open_issues_count":20,"forks_count":153,"subscribers_count":21,"default_branch":"main","last_synced_at":"2025-04-09T10:49:35.828Z","etag":null,"topics":["hyper","rust"],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rustls.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-10-02T16:48:40.000Z","updated_at":"2025-04-07T07:08:15.000Z","dependencies_parsed_at":"2023-09-27T19:35:08.497Z","dependency_job_id":"6f5152a3-4c28-4f15-bffc-2921f6deb614","html_url":"https://github.com/rustls/hyper-rustls","commit_stats":{"total_commits":304,"total_committers":55,"mean_commits":5.527272727272727,"dds":0.75,"last_synced_commit":"51a284650efd2f2696858a231543eb33b30a2c8a"},"previous_names":["ctz/hyper-rustls"],"tags_count":48,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustls%2Fhyper-rustls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustls%2Fhyper-rustls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustls%2Fhyper-rustls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustls%2Fhyper-rustls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rustls","download_url":"https://codeload.github.com/rustls/hyper-rustls/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248027417,"owners_count":21035594,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hyper","rust"],"created_at":"2024-10-22T14:07:52.207Z","updated_at":"2025-04-10T01:04:28.186Z","avatar_url":"https://github.com/rustls.png","language":"Rust","readme":"# hyper-rustls\n\nThis is an integration between the [Rustls TLS stack](https://github.com/rustls/rustls) and the\n[hyper HTTP library](https://github.com/hyperium/hyper).\n\n[![Build Status](https://github.com/rustls/hyper-rustls/actions/workflows/build.yml/badge.svg)](https://github.com/rustls/hyper-rustls/actions)\n[![Crate](https://img.shields.io/crates/v/hyper-rustls.svg)](https://crates.io/crates/hyper-rustls)\n[![Documentation](https://docs.rs/hyper-rustls/badge.svg)](https://docs.rs/hyper-rustls)\n\n# Release history\n\nRelease history can be found [on GitHub](https://github.com/rustls/hyper-rustls/releases).\n\n# License\n\nhyper-rustls is distributed under the following three licenses:\n\n- Apache License version 2.0.\n- MIT license.\n- ISC license.\n\nThese are included as LICENSE-APACHE, LICENSE-MIT and LICENSE-ISC respectively. You may use this\nsoftware under the terms of any of these licenses, at your option.\n\n## Running examples\n\n### server\n\n```bash\ncargo run --example server\n```\n\n### client\n\n```bash\ncargo run --example client \"https://docs.rs/hyper-rustls/latest/hyper_rustls/\"\n```\n\n## Crate features\n\nThis crate exposes a number of features to add support for different portions of `hyper-util`,\n`rustls`, and other dependencies.\n\n| Feature flag | Enabled by default | Description |\n| ------------ | ------------------ | ----------- |\n| `aws-lc-rs`  | **yes** | Enables use of the [AWS-LC][aws-lc-rs] backend for [`rustls`][rustls] |\n| `http1` | **yes** | Enables HTTP/1 support in [`hyper-util`][hyper-util] |\n| `http2` | **no** | Enables HTTP/2 support in [`hyper-util`][hyper-util] |\n| `webpki-tokio` | **no** | Uses a compiled-in set of root certificates trusted by Mozilla (via [`webpki-roots`][webpki-roots]) |\n| `native-tokio` | **yes** | Use the platform's native certificate store at runtime (via [`rustls-native-certs`][rustls-native-certs]) |\n| `rustls-platform-verifier` | **no** | Use the operating system's verifier for certificate verification (via [`rustls-platform-verifier`][rustls-platform-verifier]) |\n| `ring` | **no** | Enables use of the [`ring`][ring] backend for [`rustls`][rustls] |\n| `tls12` | **yes** | Enables support for TLS 1.2 (only TLS 1.3 supported when disabled) |\n| `logging` | **yes** | Enables logging of protocol-level diagnostics and errors via [`log`][log] |\n| `fips` | **no** | Enables support for using a FIPS 140-3 compliant backend via AWS-LC (enables `aws-lc-rs` feature) |\n\n[aws-lc-rs]: https://docs.rs/aws-lc-rs\n[rustls]: https://docs.rs/rustls\n[hyper-util]: https://docs.rs/hyper-util\n[webpki-roots]: https://docs.rs/webpki-roots\n[rustls-native-certs]: https://docs.rs/rustls-native-certs\n[rustls-platform-verifier]: https://docs.rs/rustls-platform-verifier\n[ring]: https://docs.rs/ring\n[log]: https://docs.rs/log\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustls%2Fhyper-rustls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frustls%2Fhyper-rustls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustls%2Fhyper-rustls/lists"}