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 022bbbd commit 63c8b9f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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.2"
version = "0.1.1-alpha.3"
edition = "2021"
license = "LGPL-3.0-or-later"

Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
use core::alloc::{GlobalAlloc, Layout};
pub use slab_allocator_rs::LockedHeap;
use spin::Lazy;

pub use slab_allocator_rs::LockedHeap;

// A wrapper around `slab_allocator_rs::LockedHeap` that initializes the heap lazily.
pub struct LazyHeap(Lazy<LockedHeap>);

Expand Down

0 comments on commit 63c8b9f

Please sign in to comment.