File tree 3 files changed +18
-2
lines changed
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 1
1
[package ]
2
2
name = " h3-webtransport"
3
- version = " 0.1.0 "
3
+ version = " 0.1.1 "
4
4
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"
5
12
6
13
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
14
@@ -12,7 +19,7 @@ http = "1"
12
19
pin-project-lite = { version = " 0.2" , default-features = false }
13
20
tracing = " 0.1.37"
14
21
tokio = { version = " 1.28" , default-features = false }
15
- h3-datagram = { path = " ../h3-datagram" }
22
+ h3-datagram = { version = " 0.0.1 " , path = " ../h3-datagram" }
16
23
17
24
[dependencies .h3 ]
18
25
version = " 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