From 1aa212a5c9474c3b17c6d0d99be555fe1ef9b0ae Mon Sep 17 00:00:00 2001 From: Martichou Date: Sat, 15 Jul 2023 22:24:50 +0200 Subject: [PATCH] update msrv to 1.63 Signed-off-by: Martichou --- .github/workflows/ci.yml | 2 +- actix-codec/Cargo.toml | 2 +- actix-macros/Cargo.toml | 2 +- actix-macros/tests/trybuild.rs | 2 +- actix-rt/Cargo.toml | 2 +- actix-server/Cargo.toml | 2 +- actix-service/Cargo.toml | 2 +- actix-tls/Cargo.toml | 2 +- actix-tracing/Cargo.toml | 2 +- actix-utils/Cargo.toml | 2 +- bytestring/Cargo.toml | 2 +- local-channel/Cargo.toml | 2 +- local-waker/Cargo.toml | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f59d79e9..bb2428a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - { name: Windows (MinGW), os: windows-latest, triple: x86_64-pc-windows-gnu } - { name: Windows (32-bit), os: windows-latest, triple: i686-pc-windows-msvc } version: - - 1.60.0 + - 1.63.0 - stable name: ${{ matrix.target.name }} / ${{ matrix.version }} diff --git a/actix-codec/Cargo.toml b/actix-codec/Cargo.toml index 565bc830..ad7758e6 100644 --- a/actix-codec/Cargo.toml +++ b/actix-codec/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/actix/actix-net" categories = ["network-programming", "asynchronous"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [dependencies] bitflags = "2" diff --git a/actix-macros/Cargo.toml b/actix-macros/Cargo.toml index 902a6dd1..024038e7 100644 --- a/actix-macros/Cargo.toml +++ b/actix-macros/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/actix/actix-net.git" categories = ["network-programming", "asynchronous"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [lib] proc-macro = true diff --git a/actix-macros/tests/trybuild.rs b/actix-macros/tests/trybuild.rs index 7e399d49..beec48b8 100644 --- a/actix-macros/tests/trybuild.rs +++ b/actix-macros/tests/trybuild.rs @@ -1,4 +1,4 @@ -#[rustversion::stable(1.60)] // MSRV +#[rustversion::stable(1.63)] // MSRV #[test] fn compile_macros() { let t = trybuild::TestCases::new(); diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index fa5fc204..eab685d0 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/actix/actix-net.git" categories = ["network-programming", "asynchronous"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [features] default = ["macros"] diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 58f2bba6..59984bc0 100755 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -13,7 +13,7 @@ homepage = "https://actix.rs" repository = "https://github.com/actix/actix-net.git" license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [features] default = [] diff --git a/actix-service/Cargo.toml b/actix-service/Cargo.toml index 74904634..191c996c 100644 --- a/actix-service/Cargo.toml +++ b/actix-service/Cargo.toml @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous", "no-std"] repository = "https://github.com/actix/actix-net" license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [dependencies] futures-core = { version = "0.3.17", default-features = false } diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 9c463e2c..d343d0cc 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/actix/actix-net.git" categories = ["network-programming", "asynchronous", "cryptography"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [package.metadata.docs.rs] all-features = true diff --git a/actix-tracing/Cargo.toml b/actix-tracing/Cargo.toml index 27dfbc22..314bd6ae 100644 --- a/actix-tracing/Cargo.toml +++ b/actix-tracing/Cargo.toml @@ -10,7 +10,7 @@ documentation = "https://docs.rs/actix-tracing" categories = ["network-programming", "asynchronous"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [dependencies] actix-service = "2" diff --git a/actix-utils/Cargo.toml b/actix-utils/Cargo.toml index 38d8af5e..ba21b217 100644 --- a/actix-utils/Cargo.toml +++ b/actix-utils/Cargo.toml @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] repository = "https://github.com/actix/actix-net" license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [dependencies] pin-project-lite = "0.2" diff --git a/bytestring/Cargo.toml b/bytestring/Cargo.toml index 21da5a95..3a755bed 100644 --- a/bytestring/Cargo.toml +++ b/bytestring/Cargo.toml @@ -12,7 +12,7 @@ homepage = "https://actix.rs" repository = "https://github.com/actix/actix-net.git" license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [dependencies] bytes = { version = "1.2", default-features = false } diff --git a/local-channel/Cargo.toml b/local-channel/Cargo.toml index 04a4b9b5..d301e462 100644 --- a/local-channel/Cargo.toml +++ b/local-channel/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/actix/actix-net.git" keywords = ["channel", "local", "futures"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [dependencies] futures-core = "0.3.17" diff --git a/local-waker/Cargo.toml b/local-waker/Cargo.toml index 1baa08c0..51f85d4d 100644 --- a/local-waker/Cargo.toml +++ b/local-waker/Cargo.toml @@ -11,6 +11,6 @@ keywords = ["waker", "local", "futures", "no-std"] categories = ["asynchronous", "no-std"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [dependencies]