Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions oscars/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,12 @@
//! Things that may be contained here in: allocators, garbage collectors, memory
//! management primitives.

#![no_std]
#![cfg_attr(not(any(test, feature = "std")), no_std)]

extern crate self as oscars;

extern crate alloc as rust_alloc;

#[cfg(feature = "std")]
extern crate std;

#[cfg(feature = "mark_sweep")]
pub use crate::collectors::mark_sweep::*;
#[cfg(feature = "mark_sweep")]
Expand Down