mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-09 19:00:46 +00:00
Fix skeptic feature
This commit is contained in:
parent
1987922ddb
commit
ef76a75632
4
build.rs
4
build.rs
@ -1,4 +1,4 @@
|
|||||||
#[cfg(skeptic)]
|
#[cfg(feature = "skeptic")]
|
||||||
fn main() {
|
fn main() {
|
||||||
extern crate skeptic;
|
extern crate skeptic;
|
||||||
|
|
||||||
@ -8,5 +8,5 @@ fn main() {
|
|||||||
"doc/tutorial_3.md" ]);
|
"doc/tutorial_3.md" ]);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(skeptic))]
|
#[cfg(not(feature = "skeptic"))]
|
||||||
fn main() {}
|
fn main() {}
|
||||||
|
@ -1 +1,2 @@
|
|||||||
|
#[cfg(feature = "skeptic")]
|
||||||
include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs"));
|
include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs"));
|
||||||
|
Loading…
Reference in New Issue
Block a user