Skip to content

Allow stable features + a note about why #128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion chalk-engine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,17 @@

#![feature(crate_in_paths)]
#![feature(crate_visibility_modifier)]
#![feature(dyn_trait)]
#![feature(in_band_lifetimes)]
#![feature(macro_vis_matcher)]
#![feature(step_trait)]
#![feature(non_modrs_mods)]

//FIXME(2018-05-14): In rustc we build using beta and dyn trait is still unstable right now, so we
// need to allow this to remove the warning about dyn_trait being stable in the latest rust.
// We should probably eventually remove this `allow` and delete any unecessary `feature` declarations.
#![allow(stable_features)]
#![feature(dyn_trait)]

#[macro_use] extern crate chalk_macros;
extern crate stacker;
extern crate fxhash;
Expand Down