aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2020-04-27 15:22:53 +0200
committerDaniel Schadt <kingdread@gmx.de>2020-04-27 15:22:53 +0200
commit84d74c3a47cc0cfad42f2b000a872d9fcbec120e (patch)
treeb6ddf127010c9da145557ab356698abe5931167c /src
parent4205887223ab26e2950eea74ac1f9df4901695a9 (diff)
downloadevtclib-84d74c3a47cc0cfad42f2b000a872d9fcbec120e.tar.gz
evtclib-84d74c3a47cc0cfad42f2b000a872d9fcbec120e.tar.bz2
evtclib-84d74c3a47cc0cfad42f2b000a872d9fcbec120e.zip
remove features stmt_expr_attributes & never_type
Those are not used anymore and can be disabled. Maybe we can even get rid of try_trait in a nice way, allowing us to run on stable instead of nightly-only.
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c7d4651..c2272cf 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, stmt_expr_attributes, never_type)]
+#![feature(try_trait)]
use thiserror::Error;
use getset::Getters;