Add bitflags macro

This commit is contained in:
Philipp Oppermann
2015-08-17 21:01:52 +02:00
parent 7391a7a9eb
commit 812396d473
2 changed files with 6 additions and 0 deletions

View File

@@ -9,5 +9,9 @@ crate-type = ["staticlib"]
[dependencies]
rlibc = "*"
[dependencies.bitflags]
git = "https://github.com/phil-opp/bitflags.git"
branch = "no_std"
[dependencies.multiboot2]
path = "../multiboot2"

View File

@@ -18,6 +18,8 @@
extern crate rlibc;
extern crate multiboot2;
#[macro_use]
extern crate bitflags;
use core::fmt::Write;