mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
* Update to new allocator API * Change linked_list_allocator dependency to link directly to git repository * Add Cargo.lock to gitignore
13 lines
301 B
TOML
13 lines
301 B
TOML
[package]
|
|
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
|
|
name = "hole_list_allocator"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
linked_list_allocator = { git = "https://github.com/phil-opp/linked-list-allocator.git"}
|
|
spin = "0.4.5"
|
|
|
|
[dependencies.lazy_static]
|
|
version = "0.2.1"
|
|
features = ["spin_no_std"]
|