We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd78311 + 3ffd948 commit 92f0203Copy full SHA for 92f0203
chalk-engine/src/lib.rs
@@ -51,12 +51,17 @@
51
52
#![feature(crate_in_paths)]
53
#![feature(crate_visibility_modifier)]
54
-#![feature(dyn_trait)]
55
#![feature(in_band_lifetimes)]
56
#![feature(macro_vis_matcher)]
57
#![feature(step_trait)]
58
#![feature(non_modrs_mods)]
59
+//FIXME(2018-05-14): In rustc we build using beta and dyn trait is still unstable right now, so we
60
+// need to allow this to remove the warning about dyn_trait being stable in the latest rust.
61
+// We should probably eventually remove this `allow` and delete any unecessary `feature` declarations.
62
+#![allow(stable_features)]
63
+#![feature(dyn_trait)]
64
+
65
#[macro_use] extern crate chalk_macros;
66
extern crate stacker;
67
extern crate fxhash;
0 commit comments