Skip to content

Some project maintanance #297

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ env:
toolchain_style: stable
toolchain_msrv: 1.70.0
toolchain_h3_quinn_msrv: 1.71.0
toolchain_doc: nightly-2024-12-02
toolchain_doc: nightly-2025-04-02
toolchain_lint: stable
toolchain_fuzz: nightly-2024-12-02
toolchain_fuzz: nightly-2025-04-02

jobs:
ci-pass:
Expand Down
2 changes: 1 addition & 1 deletion ci/h3spec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
LOGFILE=h3server.log
if ! [ -e "h3spec-linux-x86_64" ] ; then
# if we don't already have a h3spec executable, wget it from github
wget https://github.com/kazu-yamamoto/h3spec/releases/download/v0.1.10/h3spec-linux-x86_64
wget https://github.com/kazu-yamamoto/h3spec/releases/download/v0.1.12/h3spec-linux-x86_64
chmod +x h3spec-linux-x86_64
fi

Expand Down
1 change: 1 addition & 0 deletions h3-datagram/LICENSE
2 changes: 1 addition & 1 deletion h3-quinn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Jean-Christophe BEGUE <[email protected]>"]
edition = "2021"
documentation = "https://docs.rs/h3-quinn"
repository = "https://github.com/hyperium/h3"
readme = "../README.md"
readme = "README.md"
description = "QUIC transport implementation based on Quinn."
keywords = ["http3", "quic", "h3"]
categories = ["network-programming", "web-programming"]
Expand Down
28 changes: 28 additions & 0 deletions h3-quinn/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# h3-quinn

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](../LICENSE)
[![CI](https://github.com/hyperium/h3/workflows/CI/badge.svg)](https://github.com/hyperium/h3/actions?query=workflow%3ACI)
[![Crates.io](https://img.shields.io/crates/v/h3-quinn.svg)](https://crates.io/crates/h3-quinn)
[![Documentation](https://docs.rs/h3-quinn/badge.svg)](https://docs.rs/h3-quinn)

QUIC transport implementation for [h3](https://github.com/hyperium/h3) based on [Quinn](https://github.com/quinn-rs/quinn).

## Overview

`h3-quinn` provides the integration between the `h3` HTTP/3 implementation and the `quinn` QUIC transport library. This creates a fully functional HTTP/3 client and server using Quinn as the underlying QUIC implementation.

## Features

- Complete implementation of the `h3` QUIC transport traits
- Full support for HTTP/3 client and server functionality
- Optional tracing support
- Optional datagram support

## License

This project is licensed under the [MIT license](../LICENSE).

## See Also

- [h3](https://github.com/hyperium/h3) - The core HTTP/3 implementation
- [Quinn](https://github.com/quinn-rs/quinn) - The QUIC implementation used by this crate
1 change: 1 addition & 0 deletions h3-webtransport/LICENSE
Loading