Skip to content

Commit

Permalink
phil-opp/blog_os#1307: bump version and publish
Browse files Browse the repository at this point in the history
  • Loading branch information
kennystrawnmusic committed Mar 30, 2024
1 parent 2901be0 commit b3ccee8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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 @@ -2,7 +2,7 @@
name = "lazy-heap"
description = "A lazy heap allocator for Rust based on `slab_allocator_rs`."
repository = "https://github.com/kennystrawnmusic/lazy-heap"
version = "0.1.1-alpha.4"
version = "0.1.1-alpha.5"
edition = "2021"
license = "LGPL-3.0-or-later"
categories = [ "no-std", "memory-management" ]
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use core::alloc::{GlobalAlloc, Layout};
use spin::Lazy;

// Re-export `LockedHeap` from `slab_allocator_rs` to make this easier to use.
pub use slab_allocator_rs::LockedHeap;

// A wrapper around `slab_allocator_rs::LockedHeap` that initializes the heap lazily.
Expand Down

0 comments on commit b3ccee8

Please sign in to comment.