Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
7aa6af2
chore: update workflows and dependencies; migrate to actions/checkout…
ZR233 Apr 7, 2026
5cbbdc9
feat: enhance logging support by integrating log crate and updating d…
ZR233 Apr 7, 2026
bcf7443
feat: refactor allocator interfaces and remove deprecated dependencie…
ZR233 Apr 7, 2026
f4739c9
Refactor benchmarks and remove stability tests
ZR233 Apr 7, 2026
632013f
feat: remove alloc_pages_at method from buddy allocator and related c…
ZR233 Apr 7, 2026
14653ce
Refactor integration and stress tests for allocator
ZR233 Apr 7, 2026
2864031
Refactor integration and stress tests for buddy-slab-allocator
ZR233 Apr 8, 2026
bdddcc1
feat: implement Default trait for BuddyAllocator, GlobalAllocator, an…
ZR233 Apr 8, 2026
c851988
Refactor slab allocator benchmarks and improve global allocator initi…
ZR233 Apr 8, 2026
41607ae
feat: enhance slab allocation by reclaiming full slabs with remote fr…
ZR233 Apr 9, 2026
61360c6
refactor: update allocator initialization to use a mutable slice inst…
ZR233 Apr 9, 2026
dc443ae
Refactor stress tests for allocator stability
ZR233 Apr 9, 2026
d7e0770
Refactor GlobalAllocator to support multiple managed sections
ZR233 Apr 9, 2026
a33a996
refactor: streamline region initialization by introducing SectionInit…
ZR233 Apr 9, 2026
3827fe4
style: format code for better readability in common.rs
ZR233 Apr 9, 2026
4714c90
chore: update changelog for version 0.2.1 and modify Cargo.toml for v…
ZR233 Apr 9, 2026
324129e
refactor: add unsafe blocks for improved safety checks in allocator m…
ZR233 Apr 9, 2026
e861fd3
chore: update changelog for version 0.3.0 with new features and impro…
ZR233 Apr 9, 2026
9d65587
refactor: improve unsafe block usage in subslice and stress test for …
ZR233 Apr 9, 2026
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
32 changes: 25 additions & 7 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
Expand All @@ -37,14 +37,14 @@ jobs:
uses: Swatinem/rust-cache@v2

- name: Run clippy
run: cargo clippy --features log,tracking -- -D warnings
run: cargo clippy --all-targets -- -D warnings

build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
Expand All @@ -55,14 +55,14 @@ jobs:
uses: Swatinem/rust-cache@v2

- name: Build library
run: cargo build --features log,tracking
run: cargo build

doc:
name: Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
Expand All @@ -73,4 +73,22 @@ jobs:
uses: Swatinem/rust-cache@v2

- name: Build documentation
run: cargo doc --no-deps --features log,tracking
run: cargo doc --no-deps

bench-check:
name: Bench Compile Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2026-02-25

- name: Rust Cache
uses: Swatinem/rust-cache@v2

- name: Check benchmarks
run: cargo check --benches
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
pull_request:
push:
branches-ignore:
- main
tags-ignore:
- "*"

permissions:
contents: read

jobs:
check:
uses: ./.github/workflows/check.yml

test:
uses: ./.github/workflows/test.yml
needs: check
87 changes: 0 additions & 87 deletions .github/workflows/deploy.yml

This file was deleted.

72 changes: 72 additions & 0 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Release-plz

on:
push:
branches:
- main

permissions:
contents: read

jobs:
check:
uses: ./.github/workflows/check.yml

test:
uses: ./.github/workflows/test.yml
needs: check

release-plz-release:
name: Release-plz release
runs-on: ubuntu-latest
needs: [check, test]
permissions:
contents: write
pull-requests: read
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
persist-credentials: false

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Run release-plz
uses: release-plz/action@1528104d2ca23787631a1c1f022abb64b34c1e11 # v0.5.128
with:
command: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# If you switch to crates.io trusted publishing, remove this line
# and keep `id-token: write` above.
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

release-plz-pr:
name: Release-plz PR
runs-on: ubuntu-latest
needs: [check, test]
permissions:
contents: write
pull-requests: write
concurrency:
group: release-plz-${{ github.ref }}
cancel-in-progress: false
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
persist-credentials: false

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Run release-plz
uses: release-plz/action@1528104d2ca23787631a1c1f022abb64b34c1e11 # v0.5.128
with:
command: release-pr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
128 changes: 0 additions & 128 deletions .github/workflows/release.yml

This file was deleted.

Loading