Skip to content

Commit e9c0a34

Browse files
authored
Merge pull request #185 from Mark-Simulacrum/non_modrs_mods-is-unstable
Non modrs mods is unstable
2 parents 4bce000 + 12335a8 commit e9c0a34

File tree

6 files changed

+6
-2
lines changed

6 files changed

+6
-2
lines changed

chalk-engine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-engine"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
description = "Core trait engine from Chalk project"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]

chalk-engine/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
5252
#![feature(in_band_lifetimes)]
5353
#![feature(step_trait)]
54+
#![feature(non_modrs_mods)]
5455

5556
#[macro_use]
5657
extern crate chalk_macros;

chalk-ir/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![feature(crate_visibility_modifier)]
22
#![feature(specialization)]
3+
#![feature(non_modrs_mods)]
34

45
use cast::Cast;
56
use chalk_engine::fallible::*;

chalk-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-macros"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Macros for Chalk"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]

chalk-solve/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![feature(crate_visibility_modifier)]
2+
#![feature(non_modrs_mods)]
23

34
#[macro_use]
45
extern crate chalk_macros;

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#![feature(specialization)]
77
#![feature(step_trait)]
88
#![feature(underscore_imports)]
9+
#![feature(non_modrs_mods)]
910

1011
extern crate chalk_parse;
1112
#[macro_use]

0 commit comments

Comments
 (0)