Skip to content

Commit 6d546c1

Browse files
oli-obkphil-opp
authored andcommitted
Remove deprecated collections dependency
1 parent 66ae00f commit 6d546c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
#![feature(collections)]
1+
#![feature(alloc)]
22
#![feature(core_intrinsics)]
33
#![no_std]
44

5-
extern crate collections;
5+
extern crate alloc;
66
extern crate byteorder;
77

88
use byteorder::ByteOrder;
99
use byteorder::BigEndian as BE;
1010
use core::ops::Deref;
1111
use core::mem;
12-
use collections::Vec;
12+
use alloc::Vec;
1313
use float_impls::FloatImpls;
1414

1515
pub mod float_impls;

0 commit comments

Comments
 (0)