diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-07-07 17:12:21 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-07-08 22:28:52 +0200 |
commit | 846a951155759ed55d8424f9757b70344dcab8e6 (patch) | |
tree | 8128291416b9a69b71156525e1864583737f1aae | |
parent | 79ef0a5d7f4930b6b970d993a633db65b5ff7349 (diff) | |
download | servo-846a951155759ed55d8424f9757b70344dcab8e6.tar.gz servo-846a951155759ed55d8424f9757b70344dcab8e6.zip |
Remove the empty stable-rust crate.
-rw-r--r-- | ports/stable-rust/.gitignore | 1 | ||||
-rw-r--r-- | ports/stable-rust/Cargo.toml | 6 | ||||
-rw-r--r-- | ports/stable-rust/src/lib.rs | 10 |
3 files changed, 0 insertions, 17 deletions
diff --git a/ports/stable-rust/.gitignore b/ports/stable-rust/.gitignore deleted file mode 100644 index ea8c4bf7f35..00000000000 --- a/ports/stable-rust/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target diff --git a/ports/stable-rust/Cargo.toml b/ports/stable-rust/Cargo.toml deleted file mode 100644 index 6240d6e0632..00000000000 --- a/ports/stable-rust/Cargo.toml +++ /dev/null @@ -1,6 +0,0 @@ -[package] -name = "stable-rust" -version = "0.0.1" -authors = ["The Servo Project Developers"] - -[dependencies] diff --git a/ports/stable-rust/src/lib.rs b/ports/stable-rust/src/lib.rs deleted file mode 100644 index 6bbd4e4ce37..00000000000 --- a/ports/stable-rust/src/lib.rs +++ /dev/null @@ -1,10 +0,0 @@ -/* 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() { - } -} |