Add bit_field dependency

This commit is contained in:
Philipp Oppermann
2016-05-23 09:01:52 +02:00
parent 431bb39fdb
commit 78655d6bef
2 changed files with 7 additions and 1 deletions

View File

@@ -4,10 +4,14 @@ name = "blog_os"
version = "0.1.0" version = "0.1.0"
[dependencies] [dependencies]
bitflags = "0.7.0"
once = "0.2.1" once = "0.2.1"
rlibc = "0.1.4" rlibc = "0.1.4"
spin = "0.3.4" spin = "0.3.4"
bitflags = "0.7.0"
[dependencies.bit-field]
git = "https://github.com/phil-opp/rust-bit-field.git"
optional = false
[dependencies.hole_list_allocator] [dependencies.hole_list_allocator]
path = "libs/hole_list_allocator" path = "libs/hole_list_allocator"

View File

@@ -27,6 +27,8 @@ extern crate alloc;
#[macro_use] #[macro_use]
extern crate collections; extern crate collections;
extern crate bit_field;
#[macro_use] #[macro_use]
mod vga_buffer; mod vga_buffer;
mod memory; mod memory;