File tree 3 files changed +0
-16
lines changed
3 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,9 @@ regex = "0.1.41"
14
14
toml = " 0.1.23"
15
15
time = " 0.1.33"
16
16
17
- [dependencies .regex_macros ]
18
- version = " *"
19
- optional = true
20
-
21
17
[features ]
22
18
default = []
23
19
24
20
# For debugging output
25
21
debug = []
26
-
27
- # for building with nightly and unstable features
28
- # until regex_macros compiles with nightly again, this should be commented out
29
- # unstable = ["regex_macros"]
30
22
unstable = []
Original file line number Diff line number Diff line change 1
- // Until regex_macros compiles on nightly, we comment this out
2
- //
3
- // #![cfg_attr(feature = "unstable", feature(plugin))]
4
- // #![cfg_attr(feature = "unstable", plugin(regex_macros))]
5
-
6
1
// DOCS
7
2
8
3
extern crate regex;
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ macro_rules! werr(
13
13
} )
14
14
) ;
15
15
16
- // regex cheat thanks to https://github.com/BurntSushi
17
- // Until regex_macros compiles with nightly again, this directive should be commented out
18
- // #[cfg(not(unstable))]
19
16
macro_rules! regex(
20
17
( $s: expr) => ( :: regex:: Regex :: new( $s) . unwrap( ) ) ;
21
18
) ;
You can’t perform that action at this time.
0 commit comments