mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Use upstream lazy_static and update once crate
This commit is contained in:
@@ -6,7 +6,7 @@ version = "0.1.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
bit_field = "0.1.0"
|
bit_field = "0.1.0"
|
||||||
bitflags = "0.7.0"
|
bitflags = "0.7.0"
|
||||||
once = "0.2.1"
|
once = "0.3.2"
|
||||||
rlibc = "0.1.4"
|
rlibc = "0.1.4"
|
||||||
spin = "0.3.4"
|
spin = "0.3.4"
|
||||||
|
|
||||||
@@ -20,6 +20,10 @@ git = "https://github.com/phil-opp/multiboot2-elf64"
|
|||||||
default-features = false
|
default-features = false
|
||||||
version = "0.7.1"
|
version = "0.7.1"
|
||||||
|
|
||||||
|
[dependencies.lazy_static]
|
||||||
|
version = "0.2.1"
|
||||||
|
features = ["spin_no_std"]
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type = ["staticlib"]
|
crate-type = ["staticlib"]
|
||||||
|
|
||||||
|
|||||||
@@ -24,6 +24,8 @@ extern crate x86;
|
|||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate once;
|
extern crate once;
|
||||||
extern crate bit_field;
|
extern crate bit_field;
|
||||||
|
#[macro_use]
|
||||||
|
extern crate lazy_static;
|
||||||
|
|
||||||
extern crate hole_list_allocator;
|
extern crate hole_list_allocator;
|
||||||
extern crate alloc;
|
extern crate alloc;
|
||||||
|
|||||||
Reference in New Issue
Block a user