Skip to content

publish h3-datagram #286

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 1 commit into from
Mar 15, 2025
Merged
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
3 changes: 3 additions & 0 deletions changelog-h3-datagram.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### (2025-03-15)

initial release
8 changes: 8 additions & 0 deletions h3-datagram/Cargo.toml
Original file line number Diff line number Diff line change
@@ -2,6 +2,14 @@
name = "h3-datagram"
version = "0.0.1"
edition = "2021"
documentation = "https://docs.rs/h3-datagram"
repository = "https://github.com/hyperium/h3"
readme = "readme.md"
description = "rfc9297 extension for the h3 crate"
keywords = ["http3", "quic", "rfc9297"]
categories = ["network-programming", "web-programming"]
license = "MIT"


[dependencies]
#h3 = { path = "../h3" }
3 changes: 3 additions & 0 deletions h3-datagram/readme.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,9 @@

this crate provides an implementation of the [h3-datagram](https://datatracker.ietf.org/doc/html/rfc9297) spec that works with the h3 crate.

# Status
This crate is still in experimental. The API is subject to change. It may contain bugs and is not yet complete. Use with caution.

## Usage
As stated in the [rfc](https://datatracker.ietf.org/doc/html/rfc9297#abstract) this is intended to be used for protocol extensions like [Web-Transport](https://datatracker.ietf.org/doc/draft-ietf-webtrans-http3/) and not directly by applications.

Loading