commit | cc543716420afb30371e924468e38f1f0af6fc7d | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Mon Jan 08 11:29:54 2018 -0800 |
committer | David Tolnay <dtolnay@gmail.com> | Mon Jan 08 11:30:18 2018 -0800 |
tree | 3d23b2a0e050591b52eb57a214a105adb12f9e96 | |
parent | 890f29837af7a2ada8aea5fe2c340296430aff70 [diff] [blame] |
Fix some feature combinations Without this `--no-default-features --features full,extra-traits` does not compile.
diff --git a/src/lib.rs b/src/lib.rs index 55d898a..ff5d62c 100644 --- a/src/lib.rs +++ b/src/lib.rs
@@ -382,7 +382,7 @@ #[cfg(feature = "parsing")] pub mod synom; pub mod punctuated; -#[cfg(all(any(feature = "full", feature = "derive"), feature = "parsing"))] +#[cfg(any(feature = "full", feature = "derive"))] mod tt; #[cfg(all(feature = "parsing", feature = "printing"))]