Skip to content

Commit f4139a0

Browse files
committed
chore: update MSRV to 1.70
1 parent 3147dbe commit f4139a0

File tree

16 files changed

+25
-8
lines changed

16 files changed

+25
-8
lines changed

.github/workflows/ci-post-merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585

8686
- name: tests
8787
if: matrix.target.os != 'ubuntu-latest'
88-
run: just test-code
88+
run: just test
8989
- name: tests
9090
if: matrix.target.os == 'ubuntu-latest'
9191
run: >-

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ members = [
1717
[workspace.package]
1818
license = "MIT OR Apache-2.0"
1919
edition = "2021"
20-
rust-version = "1.65"
20+
rust-version = "1.70"
2121

2222
[patch.crates-io]
2323
actix-codec = { path = "actix-codec" }

actix-codec/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Minimum supported Rust version (MSRV) is now 1.70.
6+
57
## 0.5.2
68

79
- Minimum supported Rust version (MSRV) is now 1.65.

actix-macros/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Minimum supported Rust version (MSRV) is now 1.70.
6+
57
## 0.2.4
68

79
- Update `syn` dependency to `2`.

actix-macros/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,6 @@ proc-macro2 = "1.0.60"
3333
actix-rt = "2"
3434

3535
futures-util = { version = "0.3.17", default-features = false }
36-
rustversion = "1"
36+
# rustversion = "1"
37+
rustversion = { path = "/Users/rob/Development/forks/rustversion" }
3738
trybuild = "1"

actix-macros/tests/trybuild.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[rustversion::stable(1.65)] // MSRV
1+
#[rustversion::stable(1.70)] // MSRV
22
#[test]
33
fn compile_macros() {
44
let t = trybuild::TestCases::new();

actix-rt/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Minimum supported Rust version (MSRV) is now 1.70.
6+
57
## 2.9.0
68

79
- Add `actix_rt::System::runtime()` method to retrieve the underlying `actix_rt::Runtime` runtime.

actix-server/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Minimum supported Rust version (MSRV) is now 1.70.
6+
57
## 2.3.0
68

79
- Add support for MultiPath TCP (MPTCP) with `MpTcp` enum and `ServerBuilder::mptcp()` method.

actix-service/CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Unreleased
44

5-
- Minimum supported Rust version (MSRV) is now 1.65.
5+
- Minimum supported Rust version (MSRV) is now 1.70.
66

77
## 2.0.2
88

actix-tls/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Minimum supported Rust version (MSRV) is now 1.70.
6+
57
## 3.3.0
68

79
- Add `rustls-0_22` create feature which excludes any root certificate methods or re-exports.

actix-tracing/CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Unreleased
44

5-
- Minimum supported Rust version (MSRV) is now 1.65.
5+
- Minimum supported Rust version (MSRV) is now 1.70.
66

77
## 0.1.0
88

actix-utils/CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Unreleased
44

5-
- Minimum supported Rust version (MSRV) is now 1.65.
5+
- Minimum supported Rust version (MSRV) is now 1.70.
66

77
## 3.0.1
88

bytestring/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Minimum supported Rust version (MSRV) is now 1.70.
6+
57
## 1.3.1
68

79
- No significant changes since `1.3.0`.

justfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ downgrade-for-msrv:
1414

1515
msrv := ```
1616
cargo metadata --format-version=1 \
17-
| jq -r 'first(.packages[] | .name = "actix-tls") | .rust_version'
17+
| jq -r 'first(.packages[] | select(.source == null and .name == "actix-tls")) | .rust_version'
1818
```
1919
msrv_full := msrv + ".0" # comment out if the MSRV has a patch version specified
2020
msrv_rustup := "+" + msrv_full

local-channel/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Minimum supported Rust version (MSRV) is now 1.70.
6+
57
## 0.1.5
68

79
- No significant changes since `0.1.4`.

local-waker/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Minimum supported Rust version (MSRV) is now 1.70.
6+
57
## 0.1.4
68

79
- Minimum supported Rust version (MSRV) is now 1.65.

0 commit comments

Comments
 (0)