Skip to content

Commit e4e4bb7

Browse files
committed
chore(actix-web-actors): prepare release 4.3.1
1 parent 323d1fa commit e4e4bb7

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

actix-web-actors/CHANGES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
## Unreleased
44

5-
- Take the encoded buffer when yielding bytes in the response stream rather than splitting the buffer, reducing memory use
5+
## 4.3.1
6+
7+
- Reduce memory usage by `take`-ing (rather than `split`-ing) the encoded buffer when yielding bytes in the response stream.
8+
- Mark crate as deprecated.
69
- Minimum supported Rust version (MSRV) is now 1.72.
710

811
## 4.3.0

actix-web-actors/Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[package]
22
name = "actix-web-actors"
3-
version = "4.3.0"
3+
version = "4.3.1+deprecated"
44
authors = ["Nikolay Kim <[email protected]>"]
55
description = "Actix actors support for Actix Web"
66
keywords = ["actix", "http", "web", "framework", "async"]
7-
homepage = "https://actix.rs"
8-
repository = "https://github.com/actix/actix-web"
9-
license = "MIT OR Apache-2.0"
10-
edition = "2021"
7+
homepage.workspace = true
8+
repository.workspace = true
9+
license.workspace = true
10+
edition.workspace = true
11+
rust-version.workspace = true
1112

1213
[package.metadata.cargo_check_external_types]
1314
allowed_external_types = [

actix-web-actors/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
# `actix-web-actors`
22

33
> Actix actors support for Actix Web.
4+
>
5+
> This crate is deprecated. Migrate to [`actix-ws`](https://crates.io/crates/actix-ws).
46
57
<!-- prettier-ignore-start -->
68

79
[![crates.io](https://img.shields.io/crates/v/actix-web-actors?label=latest)](https://crates.io/crates/actix-web-actors)
8-
[![Documentation](https://docs.rs/actix-web-actors/badge.svg?version=4.3.0)](https://docs.rs/actix-web-actors/4.3.0)
10+
[![Documentation](https://docs.rs/actix-web-actors/badge.svg?version=4.3.1)](https://docs.rs/actix-web-actors/4.3.1)
911
![Version](https://img.shields.io/badge/rustc-1.72+-ab6000.svg)
1012
![License](https://img.shields.io/crates/l/actix-web-actors.svg)
1113
<br />
12-
[![dependency status](https://deps.rs/crate/actix-web-actors/4.3.0/status.svg)](https://deps.rs/crate/actix-web-actors/4.3.0)
14+
[![dependency status](https://deps.rs/crate/actix-web-actors/4.3.1/status.svg)](https://deps.rs/crate/actix-web-actors/4.3.1)
1315
[![Download](https://img.shields.io/crates/d/actix-web-actors.svg)](https://crates.io/crates/actix-web-actors)
1416
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)
1517

actix-web-actors/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//! Actix actors support for Actix Web.
22
//!
3+
//! This crate is deprecated. Migrate to [`actix-ws`](https://crates.io/crates/actix-ws).
4+
//!
35
//! # Examples
46
//!
57
//! ```no_run

0 commit comments

Comments
 (0)