Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(fn_traits, get_type_id, unboxed_closures, use_extern_macros)]
#![feature(fn_traits, get_type_id, unboxed_closures)]

//! Mocking framework for Rust (currently only nightly)
//!
Expand Down Expand Up @@ -38,7 +38,7 @@
//! Enable procedural macros in crate root:
//!
//! ```
//! #![cfg_attr(test, feature(proc_macro_mod, use_extern_macros))]
//! #![cfg_attr(test, feature(proc_macro_hygiene))]
//! ```
//! Import Mocktopus:
//!
Expand Down
2 changes: 1 addition & 1 deletion tests/injecting.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(const_fn, proc_macro_gen, proc_macro_mod, use_extern_macros)]
#![feature(const_fn, proc_macro_hygiene)]

// Test if injecting works even if mocktopus is aliased
extern crate mocktopus as mocktopus_aliased;
Expand Down
1 change: 0 additions & 1 deletion tests/injecting_no_std.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![feature(use_extern_macros)]
#![no_std]

extern crate mocktopus;
Expand Down
2 changes: 0 additions & 2 deletions tests/mocking.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![feature(use_extern_macros)]

extern crate mocktopus;

mod mocking_fns;
Expand Down