From b56d60bbec577d73e67abbba60ed389f0589f208 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Thu, 16 Mar 2023 10:02:08 -0400 Subject: [PATCH] quinn-proto: bump version 0.9.3 -> 0.10.0. As part of upgrading the quinn-proto rustls dependency we must do a semver incompatible version bump since rustls is exposed as part of the public API. --- quinn-proto/Cargo.toml | 2 +- quinn-udp/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/quinn-proto/Cargo.toml b/quinn-proto/Cargo.toml index 9e6399299..ac0ccbc46 100644 --- a/quinn-proto/Cargo.toml +++ b/quinn-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quinn-proto" -version = "0.9.3" +version = "0.10.0" edition = "2021" rust-version = "1.59" license = "MIT OR Apache-2.0" diff --git a/quinn-udp/Cargo.toml b/quinn-udp/Cargo.toml index 6b93a6227..b79e0cbb3 100644 --- a/quinn-udp/Cargo.toml +++ b/quinn-udp/Cargo.toml @@ -23,7 +23,7 @@ maintenance = { status = "experimental" } [dependencies] libc = "0.2.69" -proto = { package = "quinn-proto", path = "../quinn-proto", version = "0.9", default-features = false } +proto = { package = "quinn-proto", path = "../quinn-proto", version = "0.10", default-features = false } socket2 = "0.4" # 0.5.1 has an MSRV of 1.63 tracing = "0.1.10"