-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from dtolnay/stable
Stable support
- Loading branch information
Showing
21 changed files
with
344 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
language: rust | ||
rust: | ||
- nightly | ||
|
||
cache: | ||
directories: | ||
- /home/travis/.cargo | ||
script: | ||
- cargo test | ||
|
||
matrix: | ||
include: | ||
- rust: nightly | ||
script: cargo test | ||
- rust: beta | ||
script: cargo check --manifest-path examples/wasm/Cargo.toml | ||
- rust: stable | ||
script: cargo check --manifest-path examples/wasm/Cargo.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#![recursion_limit = "256"] | ||
#![feature(proc_macro_hygiene, decl_macro)] | ||
|
||
extern crate rocket; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#![feature(proc_macro_hygiene)] | ||
#![recursion_limit = "256"] | ||
|
||
extern crate stdweb; | ||
extern crate typed_html; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
extern crate lalrpop; | ||
extern crate version_check; | ||
|
||
fn main() { | ||
lalrpop::process_root().unwrap(); | ||
|
||
if version_check::is_nightly().unwrap_or(false) { | ||
println!("cargo:rustc-cfg=can_join_spans"); | ||
println!("cargo:rustc-cfg=can_show_location_of_runtime_parse_error"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use proc_macro::{Ident, Span, TokenStream}; | ||
use proc_macro2::{Ident, Span, TokenStream}; | ||
|
||
use map::StringyMap; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.