-
-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
88 changed files
with
7,396 additions
and
3,329 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: seanmonstar |
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,24 +1,23 @@ | ||
[package] | ||
name = "h2" | ||
# When releasing to crates.io: | ||
# - Update doc URL. | ||
# - html_root_url. | ||
# - Update CHANGELOG.md. | ||
# - Create git tag | ||
version = "0.2.4" | ||
version = "0.4.4" | ||
license = "MIT" | ||
authors = [ | ||
"Carl Lerche <[email protected]>", | ||
"Sean McArthur <[email protected]>", | ||
] | ||
description = "An HTTP/2.0 client and server" | ||
documentation = "https://docs.rs/h2/0.2.4/h2/" | ||
description = "An HTTP/2 client and server" | ||
documentation = "https://docs.rs/h2" | ||
repository = "https://github.com/hyperium/h2" | ||
readme = "README.md" | ||
keywords = ["http", "async", "non-blocking"] | ||
categories = ["asynchronous", "web-programming", "network-programming"] | ||
exclude = ["fixtures/**", "ci/**"] | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.63" | ||
|
||
[features] | ||
# Enables `futures::Stream` implementations for various types. | ||
|
@@ -43,31 +42,36 @@ members = [ | |
futures-core = { version = "0.3", default-features = false } | ||
futures-sink = { version = "0.3", default-features = false } | ||
futures-util = { version = "0.3", default-features = false } | ||
tokio-util = { version = "0.3.1", features = ["codec"] } | ||
tokio = { version = "0.2", features = ["io-util"] } | ||
bytes = "0.5.2" | ||
http = "0.2" | ||
log = "0.4.1" | ||
tokio-util = { version = "0.7.1", features = ["codec", "io"] } | ||
tokio = { version = "1", features = ["io-util"] } | ||
bytes = "1" | ||
http = "1" | ||
tracing = { version = "0.1.35", default-features = false, features = ["std"] } | ||
fnv = "1.0.5" | ||
slab = "0.4.0" | ||
indexmap = "1.0" | ||
slab = "0.4.2" | ||
indexmap = { version = "2", features = ["std"] } | ||
|
||
[dev-dependencies] | ||
|
||
# Fuzzing | ||
quickcheck = { version = "0.4.1", default-features = false } | ||
rand = "0.3.15" | ||
quickcheck = { version = "1.0.3", default-features = false } | ||
rand = "0.8.4" | ||
|
||
# HPACK fixtures | ||
hex = "0.2.0" | ||
walkdir = "1.0.0" | ||
hex = "0.4.3" | ||
walkdir = "2.3.2" | ||
serde = "1.0.0" | ||
serde_json = "1.0.0" | ||
|
||
# Examples | ||
tokio = { version = "0.2", features = ["dns", "macros", "rt-core", "sync", "tcp"] } | ||
env_logger = { version = "0.5.3", default-features = false } | ||
rustls = "0.16" | ||
tokio-rustls = "0.12.0" | ||
webpki = "0.21" | ||
webpki-roots = "0.17" | ||
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "net"] } | ||
env_logger = { version = "0.10", default-features = false } | ||
tokio-rustls = "0.24" | ||
webpki-roots = "0.25" | ||
|
||
[package.metadata.docs.rs] | ||
features = ["stream"] | ||
|
||
[[bench]] | ||
name = "main" | ||
harness = false |
Oops, something went wrong.