The collections crate was merged into the alloc crate (#333)

This commit is contained in:
Philipp Oppermann
2017-06-20 17:41:28 +02:00
committed by GitHub
parent 7d584818ff
commit ff8e8e0f8b
5 changed files with 16 additions and 20 deletions

View File

@@ -9,7 +9,7 @@
#![feature(lang_items)]
#![feature(const_fn, unique)]
#![feature(alloc, collections)]
#![feature(alloc)]
#![feature(asm)]
#![feature(naked_functions)]
#![feature(abi_x86_interrupt)]
@@ -29,9 +29,8 @@ extern crate bit_field;
extern crate lazy_static;
extern crate hole_list_allocator;
extern crate alloc;
#[macro_use]
extern crate collections;
extern crate alloc;
#[macro_use]
mod vga_buffer;