Add a dependency on lazy_static

This commit is contained in:
Philipp Oppermann
2017-04-18 15:15:44 +02:00
parent 3bbc2a0bdc
commit 7becaf5f30
2 changed files with 6 additions and 0 deletions

View File

@@ -15,3 +15,7 @@ bitflags = "0.7.0"
x86_64 = "0.1.2"
once = "0.3.3"
linked_list_allocator = "0.4.2"
[dependencies.lazy_static]
version = "0.2.4"
features = ["spin_no_std"]

View File

@@ -23,6 +23,8 @@ extern crate x86_64;
extern crate once;
extern crate linked_list_allocator;
#[macro_use]
extern crate lazy_static;
#[macro_use]
mod vga_buffer;
mod memory;
mod interrupts;