mirror of
https://github.com/servo/servo.git
synced 2025-09-01 02:28:21 +01:00
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:
parent
e30b288ed6
commit
a1a1dec4d5
7 changed files with 125 additions and 28 deletions
1
ports/stable-rust/.gitignore
vendored
Normal file
1
ports/stable-rust/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/target
|
6
ports/stable-rust/Cargo.toml
Normal file
6
ports/stable-rust/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "stable-rust"
|
||||
version = "0.0.1"
|
||||
authors = ["The Servo Project Developers"]
|
||||
|
||||
[dependencies]
|
10
ports/stable-rust/src/lib.rs
Normal file
10
ports/stable-rust/src/lib.rs
Normal 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() {
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue