aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2018-04-25 19:41:43 +0200
committerDaniel Schadt <kingdread@gmx.de>2018-04-25 19:41:43 +0200
commit85e203629580192413dbaa8156c2b4ca351c4bfc (patch)
tree8b41109b0f5e97c04df1716f1f09230a8c1bf828 /src/lib.rs
parent6d0e4a82f298dbd282214d458d2e00e8a52c0768 (diff)
downloadevtclib-85e203629580192413dbaa8156c2b4ca351c4bfc.tar.gz
evtclib-85e203629580192413dbaa8156c2b4ca351c4bfc.tar.bz2
evtclib-85e203629580192413dbaa8156c2b4ca351c4bfc.zip
introduce trackers
Trackers help us to keep the code somewhat cleaner, especially in the statistics::calculate function.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9d3c150..c4c70a1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -16,7 +16,7 @@
//!
//! (Look at the note on "Buffering" in the [parser
//! module](raw/parser/index.html#buffering))
-#![feature(try_trait)]
+#![feature(try_trait, stmt_expr_attributes)]
#[macro_use]
extern crate quick_error;
#[macro_use]