From 357adb0a7def39299648efa157be8f760c3e76e6 Mon Sep 17 00:00:00 2001 From: Alex Butler Date: Thu, 22 Jun 2023 23:03:30 +0100 Subject: [PATCH] Update tokio-tungstenite to 0.19 (#2021) Co-authored-by: David Pedersen --- .github/workflows/CI.yml | 2 +- axum-extra/Cargo.toml | 2 +- axum-extra/README.md | 2 +- axum-macros/README.md | 2 +- axum/Cargo.toml | 4 ++-- axum/README.md | 2 +- examples/testing-websockets/Cargo.toml | 2 +- examples/websockets/Cargo.toml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 62d73cf36e..1903b9c4f7 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -2,7 +2,7 @@ name: CI env: CARGO_TERM_COLOR: always - MSRV: '1.60' + MSRV: '1.63' on: push: diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index dca9f07d66..6ccbc46e20 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -2,7 +2,7 @@ categories = ["asynchronous", "network-programming", "web-programming"] description = "Extra utilities for axum" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" homepage = "https://github.com/tokio-rs/axum" keywords = ["http", "web", "framework"] license = "MIT" diff --git a/axum-extra/README.md b/axum-extra/README.md index 25fa2e8d74..d2c5646b2e 100644 --- a/axum-extra/README.md +++ b/axum-extra/README.md @@ -14,7 +14,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in ## Minimum supported Rust version -axum-extra's MSRV is 1.60. +axum-extra's MSRV is 1.63. ## Getting Help diff --git a/axum-macros/README.md b/axum-macros/README.md index acaf06122a..7fa1bd2dea 100644 --- a/axum-macros/README.md +++ b/axum-macros/README.md @@ -14,7 +14,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in ## Minimum supported Rust version -axum-macros's MSRV is 1.60. +axum-macros's MSRV is 1.63. ## Getting Help diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 087bd72082..0979f1278c 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -4,7 +4,7 @@ version = "0.6.18" categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" homepage = "https://github.com/tokio-rs/axum" keywords = ["http", "web", "framework"] license = "MIT" @@ -61,7 +61,7 @@ serde_path_to_error = { version = "0.1.8", optional = true } serde_urlencoded = { version = "0.7", optional = true } sha1 = { version = "0.10", optional = true } tokio = { package = "tokio", version = "1.25.0", features = ["time"], optional = true } -tokio-tungstenite = { version = "0.18.0", optional = true } +tokio-tungstenite = { version = "0.19", optional = true } tracing = { version = "0.1", default-features = false, optional = true } [dependencies.tower-http] diff --git a/axum/README.md b/axum/README.md index 08487807c5..407d931b4d 100644 --- a/axum/README.md +++ b/axum/README.md @@ -111,7 +111,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in ## Minimum supported Rust version -axum's MSRV is 1.60. +axum's MSRV is 1.63. ## Examples diff --git a/examples/testing-websockets/Cargo.toml b/examples/testing-websockets/Cargo.toml index 26c4f8d40b..7fc9a26a16 100644 --- a/examples/testing-websockets/Cargo.toml +++ b/examples/testing-websockets/Cargo.toml @@ -9,4 +9,4 @@ axum = { path = "../../axum", features = ["ws"] } futures = "0.3" hyper = { version = "0.14", features = ["full"] } tokio = { version = "1.0", features = ["full"] } -tokio-tungstenite = "0.17" +tokio-tungstenite = "0.19" diff --git a/examples/websockets/Cargo.toml b/examples/websockets/Cargo.toml index 30e6c3c0f1..d79c29b736 100644 --- a/examples/websockets/Cargo.toml +++ b/examples/websockets/Cargo.toml @@ -10,7 +10,7 @@ futures = "0.3" futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] } headers = "0.3" tokio = { version = "1.0", features = ["full"] } -tokio-tungstenite = "0.18.0" +tokio-tungstenite = "0.19" tower = { version = "0.4", features = ["util"] } tower-http = { version = "0.4.0", features = ["fs", "trace"] } tracing = "0.1"