diff options
| author | Max Audron <audron@cocaine.farm> | 2021-11-29 14:08:02 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2021-11-29 14:08:02 +0100 |
| commit | 81862f5c0ee9676626bb30d8138598c122a2ed1f (patch) | |
| tree | a04bfa405de0a0fa6683c760f4f3be1169b8c185 /src/lib.rs | |
| parent | statetracker: rewrite sync handling (diff) | |
remove no longer needed feature flag so we can compile on rust stable
Diffstat (limited to '')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,7 @@ -#![feature(test)] -#![feature(doc_cfg)] +#![cfg_attr(all(test, feature = "bench"), feature(test))] +#[cfg(all(test, feature = "bench"))] +extern crate test; + #[doc = include_str!("../README.md")] #[cfg_attr(docsrs, feature(doc_cfg))] extern crate self as libquassel; |
