Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
target:
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
version:
- { name: msrv, version: 1.82.0 }
- { name: msrv, version: 1.85.0 }
- { name: stable, version: stable }

name: ${{ matrix.target.name }} / ${{ matrix.version.name }}
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
- { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc }
version:
- { name: msrv, version: 1.82.0 }
- { name: msrv, version: 1.85.0 }
- { name: stable, version: stable }

name: ${{ matrix.target.name }} / ${{ matrix.version.name }}
Expand Down
46 changes: 40 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repository = "https://github.com/actix/actix-extras"
homepage = "https://actix.rs"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.82"
rust-version = "1.85"

[workspace.lints.rust]
rust-2018-idioms = { level = "deny" }
Expand Down
2 changes: 1 addition & 1 deletion actix-cors/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

- Minimum supported Rust version (MSRV) is now 1.82.
- Minimum supported Rust version (MSRV) is now 1.85.

## 0.7.1

Expand Down
4 changes: 2 additions & 2 deletions actix-cors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![crates.io](https://img.shields.io/crates/v/actix-cors?label=latest)](https://crates.io/crates/actix-cors)
[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.7.1)](https://docs.rs/actix-cors/0.7.1)
![Version](https://img.shields.io/badge/rustc-1.82+-ab6000.svg)
![Version](https://img.shields.io/badge/rustc-1.85+-ab6000.svg)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-cors.svg)
<br />
[![Dependency Status](https://deps.rs/crate/actix-cors/0.7.1/status.svg)](https://deps.rs/crate/actix-cors/0.7.1)
Expand Down Expand Up @@ -69,4 +69,4 @@ async fn main() -> std::io::Result<()> {

- [API Documentation](https://docs.rs/actix-cors)
- [Example Project](https://github.com/actix/examples/tree/main/cors)
- Minimum Supported Rust Version (MSRV): 1.82
- Minimum Supported Rust Version (MSRV): 1.85
2 changes: 1 addition & 1 deletion actix-identity/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

- Minimum supported Rust version (MSRV) is now 1.82.
- Minimum supported Rust version (MSRV) is now 1.85.

## 0.9.0

Expand Down
2 changes: 1 addition & 1 deletion actix-limitation/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- Update `redis` dependency to `0.32`.
- Update `actix-session` dependency to `0.11`.
- Minimum supported Rust version (MSRV) is now 1.82.
- Minimum supported Rust version (MSRV) is now 1.85.

## 0.5.1

Expand Down
2 changes: 1 addition & 1 deletion actix-limitation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ actix-web = { version = "4", default-features = false, features = ["cookies"] }
chrono = "0.4"
derive_more = { version = "2", features = ["display", "error", "from"] }
log = "0.4"
redis = { version = "0.32", default-features = false, features = ["tokio-comp"] }
redis = { version = "1.0", default-features = false, features = ["tokio-comp"] }
time = "0.3"

# session
Expand Down
2 changes: 1 addition & 1 deletion actix-limitation/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ impl Limiter {
let key = key.into();
let expires = self.period.as_secs();

let mut connection = self.client.get_multiplexed_tokio_connection().await?;
let mut connection = self.client.get_multiplexed_async_connection().await?;

// The seed of this approach is outlined Atul R in a blog post about rate limiting using
// NodeJS and Redis. For more details, see https://blog.atulr.com/rate-limiter
Expand Down
2 changes: 1 addition & 1 deletion actix-protobuf/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

- Minimum supported Rust version (MSRV) is now 1.82.
- Minimum supported Rust version (MSRV) is now 1.85.

## 0.11.0

Expand Down
2 changes: 1 addition & 1 deletion actix-session/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Unreleased

- `Session` implementation of `FromRequest` now errors with `Infallible` rather than `actix_web::error::Error`.
- Minimum supported Rust version (MSRV) is now 1.82.
- Minimum supported Rust version (MSRV) is now 1.85.

## 0.11.0

Expand Down
2 changes: 1 addition & 1 deletion actix-session/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ serde_json = { version = "1" }
tracing = { version = "0.1.44", default-features = false, features = ["log"] }

# redis-session
redis = { version = "0.32", default-features = false, features = ["tokio-comp", "connection-manager"], optional = true }
redis = { version = "1.0", default-features = false, features = ["tokio-comp", "connection-manager"], optional = true }
deadpool-redis = { version = "0.22", optional = true }

[dev-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions actix-settings/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Minimum supported Rust version (MSRV) is now 1.82.

## 0.9.0

- Update `toml` dependency to `0.9`.
Expand Down
2 changes: 1 addition & 1 deletion actix-web-httpauth/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

- Minimum supported Rust version (MSRV) is now 1.82.
- Minimum supported Rust version (MSRV) is now 1.85.

## 0.8.2

Expand Down
4 changes: 2 additions & 2 deletions actix-ws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[![crates.io](https://img.shields.io/crates/v/actix-ws?label=latest)](https://crates.io/crates/actix-ws)
[![Documentation](https://docs.rs/actix-ws/badge.svg?version=0.3.0)](https://docs.rs/actix-ws/0.3.0)
![Version](https://img.shields.io/badge/rustc-1.82+-ab6000.svg)
![Version](https://img.shields.io/badge/rustc-1.85+-ab6000.svg)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-ws.svg)
<br />
[![Dependency Status](https://deps.rs/crate/actix-ws/0.3.0/status.svg)](https://deps.rs/crate/actix-ws/0.3.0)
Expand Down Expand Up @@ -62,7 +62,7 @@ async fn main() -> std::io::Result<()> {

- [API Documentation](https://docs.rs/actix-ws)
- [Example Chat Project](https://github.com/actix/examples/tree/main/websockets/chat-actorless)
- Minimum Supported Rust Version (MSRV): 1.82
- Minimum Supported Rust Version (MSRV): 1.85

## License

Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ allow = [
"BSD-3-Clause",
"Zlib",
"ISC",
"BSL-1.0",
]
private = { ignore = true }

Expand Down
4 changes: 0 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,6 @@ test:
# Downgrade dev-dependencies necessary to run MSRV checks/tests.
[private]
downgrade-for-msrv:
cargo {{ toolchain }} update -p=idna_adapter --precise=1.2.0 # next ver: 1.82.0
cargo {{ toolchain }} update -p=litemap --precise=0.7.4 # next ver: 1.81.0
cargo {{ toolchain }} update -p=zerofrom --precise=0.1.5 # next ver: 1.81.0
cargo {{ toolchain }} update -p=time --precise=0.3.41 # next ver: 1.81.0

# Test workspace using MSRV.
[group("test")]
Expand Down
2 changes: 1 addition & 1 deletion tracing-actix-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/actix/actix-extras"
homepage = "https://actix.rs"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.82"
rust-version = "1.85"

[features]
default = ["emit_event_on_error"]
Expand Down
Loading