Skip to content

Commit 04c2b90

Browse files
authored
h3-webtransport v0.1.1 (#289)
1 parent 28a58ea commit 04c2b90

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

changelog-h3-webtransport.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# v0.1.1
2+
* update dependencies
3+
* move datagram logic to its own crate

h3-webtransport/Cargo.toml

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[package]
22
name = "h3-webtransport"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
5+
documentation = "https://docs.rs/h3-webtransport"
6+
repository = "https://github.com/hyperium/h3"
7+
readme = "readme.md"
8+
description = "webtransport extension for h3"
9+
keywords = ["http3", "quic", "webtransport"]
10+
categories = ["network-programming", "web-programming"]
11+
license = "MIT"
512

613
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
714

@@ -12,7 +19,7 @@ http = "1"
1219
pin-project-lite = { version = "0.2", default-features = false }
1320
tracing = "0.1.37"
1421
tokio = { version = "1.28", default-features = false }
15-
h3-datagram = { path = "../h3-datagram" }
22+
h3-datagram = { version = "0.0.1", path = "../h3-datagram" }
1623

1724
[dependencies.h3]
1825
version = "0.0.7"

h3-webtransport/readme.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# H3 Webtransport
2+
3+
Implementation of Webtransport protocol as extension of the h3 crate
4+
5+
# Status
6+
This crate is still in experimental. The API is subject to change. It may contain bugs and is not yet complete. Use with caution.

0 commit comments

Comments
 (0)