Skip to content

Commit 8d5d1db

Browse files
authored
bump MSRV to 1.65 (#485)
1 parent 177590a commit 8d5d1db

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+188
-229
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- { name: Windows (MinGW), os: windows-latest, triple: x86_64-pc-windows-gnu }
2424
- { name: Windows (32-bit), os: windows-latest, triple: i686-pc-windows-msvc }
2525
version:
26-
- 1.60.0
26+
- 1.65.0 # MSRV
2727
- stable
2828

2929
name: ${{ matrix.target.name }} / ${{ matrix.version }}

.rustfmt.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
group_imports = "StdExternalCrate"
2+
imports_granularity = "Crate"
3+
use_field_init_shorthand = true

Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ members = [
1414
]
1515
resolver = "2"
1616

17+
[workspace.package]
18+
edition = "2021"
19+
rust-version = "1.65"
20+
1721
[patch.crates-io]
1822
actix-codec = { path = "actix-codec" }
1923
actix-macros = { path = "actix-macros" }

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ See example folders for [`actix-server`](./actix-server/examples) and [`actix-tl
1313

1414
## MSRV
1515

16-
Crates in this repo currently have a Minimum Supported Rust Version (MSRV) of 1.60. As a policy, we permit MSRV increases in non-breaking releases.
16+
Crates in this repo currently have a Minimum Supported Rust Version (MSRV) of 1.65. As a policy, we permit MSRV increases in non-breaking releases.
1717

1818
## License
1919

actix-codec/CHANGES.md

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

33
## Unreleased - 2023-xx-xx
44

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

77
## 0.5.1 - 2022-03-15
88

actix-codec/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ keywords = ["network", "framework", "async", "futures"]
1010
repository = "https://github.com/actix/actix-net"
1111
categories = ["network-programming", "asynchronous"]
1212
license = "MIT OR Apache-2.0"
13-
edition = "2021"
14-
rust-version = "1.60"
13+
edition.workspace = true
14+
rust-version.workspace = true
1515

1616
[dependencies]
1717
bitflags = "2"

actix-codec/src/framed.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,7 @@ impl<T, U> Framed<T, U> {
234234
}
235235

236236
/// Flush write buffer to underlying I/O stream.
237-
pub fn flush<I>(
238-
mut self: Pin<&mut Self>,
239-
cx: &mut Context<'_>,
240-
) -> Poll<Result<(), U::Error>>
237+
pub fn flush<I>(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), U::Error>>
241238
where
242239
T: AsyncWrite,
243240
U: Encoder<I>,
@@ -270,10 +267,7 @@ impl<T, U> Framed<T, U> {
270267
}
271268

272269
/// Flush write buffer and shutdown underlying I/O stream.
273-
pub fn close<I>(
274-
mut self: Pin<&mut Self>,
275-
cx: &mut Context<'_>,
276-
) -> Poll<Result<(), U::Error>>
270+
pub fn close<I>(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), U::Error>>
277271
where
278272
T: AsyncWrite,
279273
U: Encoder<I>,

actix-codec/src/lib.rs

+11-7
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,18 @@
1111
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
1212
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
1313

14+
pub use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};
15+
pub use tokio_util::{
16+
codec::{Decoder, Encoder},
17+
io::poll_read_buf,
18+
};
19+
1420
mod bcodec;
1521
mod framed;
1622
mod lines;
1723

18-
pub use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};
19-
pub use tokio_util::codec::{Decoder, Encoder};
20-
pub use tokio_util::io::poll_read_buf;
21-
22-
pub use self::bcodec::BytesCodec;
23-
pub use self::framed::{Framed, FramedParts};
24-
pub use self::lines::LinesCodec;
24+
pub use self::{
25+
bcodec::BytesCodec,
26+
framed::{Framed, FramedParts},
27+
lines::LinesCodec,
28+
};

actix-codec/tests/test_framed_sink.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,7 @@ impl AsyncWrite for Bilateral {
8181
other => Ready(other),
8282
}
8383
}
84-
fn poll_shutdown(
85-
self: Pin<&mut Self>,
86-
_cx: &mut Context<'_>,
87-
) -> Poll<Result<(), io::Error>> {
84+
fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> {
8885
unimplemented!()
8986
}
9087
}

actix-macros/CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Unreleased - 2023-xx-xx
44

55
- Update `syn` dependency to `2`.
6-
- Minimum supported Rust version (MSRV) is now 1.60.
6+
- Minimum supported Rust version (MSRV) is now 1.65.
77

88
## 0.2.3 - 2021-10-19
99

actix-macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ description = "Macros for Actix system and runtime"
1010
repository = "https://github.com/actix/actix-net.git"
1111
categories = ["network-programming", "asynchronous"]
1212
license = "MIT OR Apache-2.0"
13-
edition = "2021"
14-
rust-version = "1.60"
13+
edition.workspace = true
14+
rust-version.workspace = true
1515

1616
[lib]
1717
proc-macro = true

actix-macros/tests/trybuild.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[rustversion::stable(1.60)] // MSRV
1+
#[rustversion::stable(1.65)] // MSRV
22
#[test]
33
fn compile_macros() {
44
let t = trybuild::TestCases::new();
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
error: the async keyword is missing from the function declaration
2-
--> $DIR/main-02-only-async.rs:2:1
2+
--> tests/trybuild/main-02-only-async.rs:2:1
33
|
44
2 | fn main() {
55
| ^^
66

77
error[E0601]: `main` function not found in crate `$CRATE`
8-
--> $DIR/main-02-only-async.rs:1:1
8+
--> tests/trybuild/main-02-only-async.rs:4:2
99
|
10-
1 | / #[actix_rt::main]
11-
2 | | fn main() {
12-
3 | | futures_util::future::ready(()).await
13-
4 | | }
14-
| |_^ consider adding a `main` function to `$DIR/tests/trybuild/main-02-only-async.rs`
10+
4 | }
11+
| ^ consider adding a `main` function to `$DIR/tests/trybuild/main-02-only-async.rs`

actix-rt/CHANGES.md

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

33
## Unreleased - 2023-xx-xx
44

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

77
## 2.8.0 - 2022-12-21
88

actix-rt/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ homepage = "https://actix.rs"
1111
repository = "https://github.com/actix/actix-net.git"
1212
categories = ["network-programming", "asynchronous"]
1313
license = "MIT OR Apache-2.0"
14-
edition = "2021"
15-
rust-version = "1.60"
14+
edition.workspace = true
15+
rust-version.workspace = true
1616

1717
[features]
1818
default = ["macros"]

actix-rt/examples/hyper.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ fn main() {
2020
let make_service =
2121
make_service_fn(|_conn| async { Ok::<_, Infallible>(service_fn(handle)) });
2222

23-
let server =
24-
Server::bind(&SocketAddr::from(([127, 0, 0, 1], 3000))).serve(make_service);
23+
let server = Server::bind(&SocketAddr::from(([127, 0, 0, 1], 3000))).serve(make_service);
2524

2625
if let Err(err) = server.await {
2726
eprintln!("server error: {}", err);

actix-rt/src/arbiter.rs

+3-8
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,7 @@ impl Arbiter {
9999
#[allow(clippy::new_without_default)]
100100
pub fn new() -> Arbiter {
101101
Self::with_tokio_rt(|| {
102-
crate::runtime::default_tokio_runtime()
103-
.expect("Cannot create new Arbiter's Runtime.")
102+
crate::runtime::default_tokio_runtime().expect("Cannot create new Arbiter's Runtime.")
104103
})
105104
}
106105

@@ -149,9 +148,7 @@ impl Arbiter {
149148
.send(SystemCommand::DeregisterArbiter(arb_id));
150149
}
151150
})
152-
.unwrap_or_else(|err| {
153-
panic!("Cannot spawn Arbiter's thread: {:?}. {:?}", &name, err)
154-
});
151+
.unwrap_or_else(|err| panic!("Cannot spawn Arbiter's thread: {name:?}: {err:?}"));
155152

156153
ready_rx.recv().unwrap();
157154

@@ -201,9 +198,7 @@ impl Arbiter {
201198
.send(SystemCommand::DeregisterArbiter(arb_id));
202199
}
203200
})
204-
.unwrap_or_else(|err| {
205-
panic!("Cannot spawn Arbiter's thread: {:?}. {:?}", &name, err)
206-
});
201+
.unwrap_or_else(|err| panic!("Cannot spawn Arbiter's thread: {name:?}: {err:?}"));
207202

208203
ready_rx.recv().unwrap();
209204

actix-rt/src/lib.rs

+12-10
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,11 @@ mod system;
6565
pub use tokio::pin;
6666
use tokio::task::JoinHandle;
6767

68-
pub use self::arbiter::{Arbiter, ArbiterHandle};
69-
pub use self::runtime::Runtime;
70-
pub use self::system::{System, SystemRunner};
68+
pub use self::{
69+
arbiter::{Arbiter, ArbiterHandle},
70+
runtime::Runtime,
71+
system::{System, SystemRunner},
72+
};
7173

7274
pub mod signal {
7375
//! Asynchronous signal handling (Tokio re-exports).
@@ -89,12 +91,13 @@ pub mod net {
8991
task::{Context, Poll},
9092
};
9193

92-
pub use tokio::io::Ready;
9394
use tokio::io::{AsyncRead, AsyncWrite, Interest};
94-
pub use tokio::net::UdpSocket;
95-
pub use tokio::net::{TcpListener, TcpSocket, TcpStream};
9695
#[cfg(unix)]
9796
pub use tokio::net::{UnixDatagram, UnixListener, UnixStream};
97+
pub use tokio::{
98+
io::Ready,
99+
net::{TcpListener, TcpSocket, TcpStream, UdpSocket},
100+
};
98101

99102
/// Extension trait over async read+write types that can also signal readiness.
100103
#[doc(hidden)]
@@ -153,10 +156,9 @@ pub mod net {
153156
pub mod time {
154157
//! Utilities for tracking time (Tokio re-exports).
155158
156-
pub use tokio::time::Instant;
157-
pub use tokio::time::{interval, interval_at, Interval};
158-
pub use tokio::time::{sleep, sleep_until, Sleep};
159-
pub use tokio::time::{timeout, Timeout};
159+
pub use tokio::time::{
160+
interval, interval_at, sleep, sleep_until, timeout, Instant, Interval, Sleep, Timeout,
161+
};
160162
}
161163

162164
pub mod task {

actix-rt/src/system.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,7 @@ impl SystemRunner {
226226

227227
/// Runs the event loop until [stopped](System::stop_with_code), returning the exit code.
228228
pub fn run_with_code(self) -> io::Result<i32> {
229-
unimplemented!(
230-
"SystemRunner::run_with_code is not implemented for io-uring feature yet"
231-
);
229+
unimplemented!("SystemRunner::run_with_code is not implemented for io-uring feature yet");
232230
}
233231

234232
/// Runs the provided future, blocking the current thread until the future completes.

actix-server/CHANGES.md

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

33
## Unreleased - 2023-xx-xx
44

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

77
## 2.2.0 - 2022-12-21
88

actix-server/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ categories = ["network-programming", "asynchronous"]
1212
homepage = "https://actix.rs"
1313
repository = "https://github.com/actix/actix-net.git"
1414
license = "MIT OR Apache-2.0"
15-
edition = "2021"
16-
rust-version = "1.60"
15+
edition.workspace = true
16+
rust-version.workspace = true
1717

1818
[features]
1919
default = []
@@ -28,7 +28,7 @@ futures-core = { version = "0.3.17", default-features = false, features = ["allo
2828
futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] }
2929
mio = { version = "0.8", features = ["os-poll", "net"] }
3030
num_cpus = "1.13"
31-
socket2 = "0.4.2" # TODO(MSRV 1.64) update to 0.5
31+
socket2 = "0.5"
3232
tokio = { version = "1.23.1", features = ["sync"] }
3333
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
3434

actix-server/src/builder.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ use tracing::{info, trace};
77
use crate::{
88
server::ServerCommand,
99
service::{InternalServiceFactory, ServerServiceFactory, StreamNewService},
10-
socket::{
11-
create_mio_tcp_listener, MioListener, MioTcpListener, StdTcpListener, ToSocketAddrs,
12-
},
10+
socket::{create_mio_tcp_listener, MioListener, MioTcpListener, StdTcpListener, ToSocketAddrs},
1311
worker::ServerWorkerConfig,
1412
Server,
1513
};
@@ -246,8 +244,7 @@ impl ServerBuilder {
246244
use std::net::{IpAddr, Ipv4Addr};
247245
lst.set_nonblocking(true)?;
248246
let token = self.next_token();
249-
let addr =
250-
crate::socket::StdSocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8080);
247+
let addr = crate::socket::StdSocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8080);
251248
self.factories.push(StreamNewService::create(
252249
name.as_ref().to_string(),
253250
token,

actix-server/src/lib.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@ mod test_server;
1818
mod waker_queue;
1919
mod worker;
2020

21-
pub use self::builder::ServerBuilder;
22-
pub use self::handle::ServerHandle;
23-
pub use self::server::Server;
24-
pub use self::service::ServerServiceFactory;
2521
#[doc(hidden)]
2622
pub use self::socket::FromStream;
27-
pub use self::test_server::TestServer;
23+
pub use self::{
24+
builder::ServerBuilder, handle::ServerHandle, server::Server, service::ServerServiceFactory,
25+
test_server::TestServer,
26+
};
2827

2928
/// Start server building process
3029
#[doc(hidden)]

actix-server/src/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ where
7878
Ok(())
7979
}
8080
Err(err) => {
81-
error!("can not convert to an async TCP stream: {}", err);
81+
error!("can not convert to an async TCP stream: {err}");
8282
Err(())
8383
}
8484
})

actix-server/src/socket.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ pub(crate) use mio::net::TcpListener as MioTcpListener;
88
use mio::{event::Source, Interest, Registry, Token};
99
#[cfg(unix)]
1010
pub(crate) use {
11-
mio::net::UnixListener as MioUnixListener,
12-
std::os::unix::net::UnixListener as StdUnixListener,
11+
mio::net::UnixListener as MioUnixListener, std::os::unix::net::UnixListener as StdUnixListener,
1312
};
1413

1514
pub(crate) enum MioListener {
@@ -105,7 +104,7 @@ impl fmt::Debug for MioListener {
105104
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
106105
match *self {
107106
MioListener::Tcp(ref lst) => write!(f, "{:?}", lst),
108-
#[cfg(all(unix))]
107+
#[cfg(unix)]
109108
MioListener::Uds(ref lst) => write!(f, "{:?}", lst),
110109
}
111110
}

0 commit comments

Comments
 (0)