-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #144
- Loading branch information
Inflation
authored
Mar 30, 2023
1 parent
3bb88ab
commit 49301f1
Showing
9 changed files
with
188 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
[package] | ||
name = "h3-quinn" | ||
version = "0.0.1" | ||
rust-version = "1.59" | ||
authors = ["Jean-Christophe BEGUE <jc.begue@pm.me>"] | ||
edition = "2018" | ||
documentation = "https://docs.rs/h3-quinn" | ||
repository = "https://github.com/hyperium/h3" | ||
readme = "../README.md" | ||
description = "QUIC transport implementation based on Quinn." | ||
keywords = ["http3","quic","h3"] | ||
keywords = ["http3", "quic", "h3"] | ||
categories = ["network-programming", "web-programming"] | ||
license = "MIT" | ||
|
||
[dependencies] | ||
h3 = { version = "0.0.1", path = "../h3" } | ||
bytes = "1" | ||
futures-util = { version = "0.3", default-features = false, features = ["io"] } | ||
quinn = { version = "0.8.0", default-features = false } | ||
quinn-proto = { version = "0.8.0", default-features = false } | ||
quinn = { version = "0.9.3", default-features = false } | ||
quinn-proto = { version = "0.9.2", default-features = false } | ||
tokio-util = { version = "0.7.7" } | ||
futures = { version = "0.3.27" } |
Oops, something went wrong.