Skip to content

Commit

Permalink
increase msrv and update dependencies (#211)
Browse files Browse the repository at this point in the history
* update msrv version

* update dependencies

* typo

* tokio version
  • Loading branch information
Ruben2424 authored Oct 23, 2023
1 parent a57ed22 commit c6e07ca
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
env:
RUST_BACKTRACE: 1
toolchain_style: stable
toolchain_msrv: 1.57
toolchain_msrv: 1.63
toolchain_h3_quinn_msrv: 1.63
toolchain_doc: nightly-2023-03-22
toolchain_doc: nightly-2023-10-21
toolchain_lint: stable
toolchain_fuzz: nightly-2023-03-22
toolchain_fuzz: nightly-2023-10-21

jobs:
ci-pass:
Expand Down
6 changes: 3 additions & 3 deletions h3-quinn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ quinn = { version = "0.10", default-features = false, features = [
"futures-io",
] }
quinn-proto = { version = "0.10", default-features = false }
tokio-util = { version = "0.7.7" }
futures = { version = "0.3.27" }
tokio = { version = "1.28", features = ["io-util"], default-features = false }
tokio-util = { version = "0.7.9" }
futures = { version = "0.3.28" }
tokio = { version = "1", features = ["io-util"], default-features = false }
12 changes: 6 additions & 6 deletions h3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "h3"
version = "0.0.2"
rust-version = "1.57"
rust-version = "1.63"
authors = [
"Sean McArthur <[email protected]>",
"Jean-Christophe BEGUE <[email protected]>",
Expand All @@ -28,8 +28,8 @@ futures-util = { version = "0.3", default-features = false, features = ["io"] }
http = "0.2.9"
tokio = { version = "1", features = ["sync"] }
pin-project-lite = { version = "0.2", default_features = false }
tracing = "0.1.37"
fastrand = "1.9.0"
tracing = "0.1.40"
fastrand = "2.0.1"

[dev-dependencies]
assert_matches = "1.5.0"
Expand All @@ -41,7 +41,7 @@ quinn = { version = "0.10", default-features = false, features = [
"ring",
] }
quinn-proto = { version = "0.10", default-features = false }
rcgen = "0.10"
rcgen = "0.11.3"
rustls = "0.21"
tokio = { version = "1", features = ["rt", "macros", "io-util", "io-std"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
Expand All @@ -51,5 +51,5 @@ tracing-subscriber = { version = "0.3", default-features = false, features = [
"time",
"tracing-log",
] }
futures = { version = "0.3.27" }
tokio-util = { version = "0.7.7" }
futures = { version = "0.3.28" }
tokio-util = { version = "0.7.9" }

0 comments on commit c6e07ca

Please sign in to comment.