Skip to content

Commit e490722

Browse files
authored
Merge pull request #174 from nikomatsakis/macro-vis-matcher
Macro vis matcher
2 parents e294333 + a613d6d commit e490722

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.travis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
language: rust
22
rust:
3+
- beta
34
- nightly
45
script:
5-
- cd chalk-engine; cargo build --no-default-features
6-
- cd chalk-engine; cargo build --all-features
7-
- cargo test --all
6+
- cd chalk-engine; RUSTC_BOOTSTRAP=1 cargo build --no-default-features
7+
- cd chalk-engine; RUSTC_BOOTSTRAP=1 cargo build --all-features
8+
- RUSTC_BOOTSTRAP=1 cargo test --all
89

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ version = "0.1.0"
3030
path = "chalk-macros"
3131

3232
[dependencies.chalk-engine]
33-
version = "0.7.1"
33+
version = "0.7.2"
3434
path = "chalk-engine"
3535

3636
[workspace]

chalk-engine/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-engine"
3-
version = "0.7.1"
3+
version = "0.7.2"
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

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
//! Popularized by Lambda Prolog.
5151
5252
#![feature(in_band_lifetimes)]
53+
#![feature(macro_vis_matcher)]
5354
#![feature(step_trait)]
5455
#![feature(non_modrs_mods)]
5556

0 commit comments

Comments
 (0)