Add mach build-stable to build with stable rustc

Github issue: #11806
Building with current stable rust (1.9.0) still fails because of
feature pragmas in some dependencies (e.g. serde_item).
This commit is contained in:
Gabriel Poesia 2016-06-30 00:05:56 -03:00
parent e30b288ed6
commit a1a1dec4d5
7 changed files with 125 additions and 28 deletions

1
ports/stable-rust/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

View file

@ -0,0 +1,6 @@
[package]
name = "stable-rust"
version = "0.0.1"
authors = ["The Servo Project Developers"]
[dependencies]

View file

@ -0,0 +1,10 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#[cfg(test)]
mod test {
#[test]
fn it_works() {
}
}