Remove alloc::prelude

As per the libs team decision in #58935.

Closes #58935
This commit is contained in:
Amanieu d'Antras 2021-10-15 01:41:31 +02:00
parent 775b6daf0f
commit 98f0580cdb

View File

@ -1,10 +1,10 @@
#![feature(start, box_syntax, core_intrinsics, alloc_prelude, alloc_error_handler)]
#![feature(start, box_syntax, core_intrinsics, alloc_error_handler)]
#![no_std]
extern crate alloc;
extern crate alloc_system;
use alloc::prelude::v1::*;
use alloc::boxed::Box;
use alloc_system::System;