Skip to content

Commit 0e36c5f

Browse files
authored
feat(bytestring): split_at method (#619)
1 parent 47f0017 commit 0e36c5f

File tree

16 files changed

+104
-16
lines changed

16 files changed

+104
-16
lines changed

.github/workflows/lint.yml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- uses: giraffate/[email protected]
4242
with:
43-
reporter: 'github-pr-check'
43+
reporter: "github-pr-check"
4444
github_token: ${{ secrets.GITHUB_TOKEN }}
4545
clippy_flags: --workspace --all-features --tests --examples --bins -- -Dclippy::todo -Aunknown_lints
4646

@@ -67,3 +67,31 @@ jobs:
6767

6868
- name: check external types
6969
run: just check-external-types-all +${{ vars.RUST_VERSION_EXTERNAL_TYPES }}
70+
71+
public-api-diff:
72+
name: Public API Diff
73+
runs-on: ubuntu-latest
74+
steps:
75+
- name: Checkout main branch
76+
uses: actions/checkout@v4
77+
with:
78+
ref: ${{ github.base_ref }}
79+
80+
- name: Checkout PR branch
81+
uses: actions/checkout@v4
82+
83+
- name: Install Rust (${{ vars.RUST_VERSION_API_DIFF }})
84+
uses: actions-rust-lang/[email protected]
85+
with:
86+
toolchain: ${{ vars.RUST_VERSION_API_DIFF }}
87+
88+
- name: Install cargo-public-api
89+
uses: taiki-e/[email protected]
90+
with:
91+
tool: cargo-public-api
92+
93+
- name: Generate API diff
94+
run: |
95+
for f in $(find -mindepth 2 -maxdepth 2 -name Cargo.toml); do
96+
cargo public-api --manifest-path "$f" --simplified diff ${{ github.event.pull_request.base.sha }}..${{ github.sha }}
97+
done

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.70"
20+
rust-version = "1.71.1"
2121

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

actix-codec/CHANGES.md

Lines changed: 1 addition & 1 deletion
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.70.
5+
- Minimum supported Rust version (MSRV) is now 1.71.
66

77
## 0.5.2
88

actix-macros/CHANGES.md

Lines changed: 1 addition & 1 deletion
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.70.
5+
- Minimum supported Rust version (MSRV) is now 1.71.
66

77
## 0.2.4
88

actix-rt/CHANGES.md

Lines changed: 2 additions & 0 deletions
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.71.
6+
57
## 2.10.0
68

79
- Relax `F`'s bound (`Fn => FnOnce`) on `{Arbiter, System}::with_tokio_rt()` functions.

actix-server/CHANGES.md

Lines changed: 2 additions & 0 deletions
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.71.
6+
57
## 2.5.0
68

79
- Update `mio` dependency to `1`.

actix-service/CHANGES.md

Lines changed: 1 addition & 1 deletion
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.70.
5+
- Minimum supported Rust version (MSRV) is now 1.71.
66

77
## 2.0.2
88

actix-tls/CHANGES.md

Lines changed: 2 additions & 0 deletions
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.71.
6+
57
## 3.4.0
68

79
- Add `rustls-0_23`, `rustls-0_23-webpki-roots`, and `rustls-0_23-native-roots` crate features.

actix-tracing/CHANGES.md

Lines changed: 1 addition & 1 deletion
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.70.
5+
- Minimum supported Rust version (MSRV) is now 1.71.
66

77
## 0.1.0
88

actix-utils/CHANGES.md

Lines changed: 1 addition & 1 deletion
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.70.
5+
- Minimum supported Rust version (MSRV) is now 1.71.
66

77
## 3.0.1
88

0 commit comments

Comments
 (0)