File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1+ # v0.1.1
2+ * update dependencies
3+ * move datagram logic to its own crate
Original file line number Diff line number Diff line change 11[package ]
22name = " h3-webtransport"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44edition = " 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"
1219pin-project-lite = { version = " 0.2" , default-features = false }
1320tracing = " 0.1.37"
1421tokio = { 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 ]
1825version = " 0.0.7"
Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments