From 846a951155759ed55d8424f9757b70344dcab8e6 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 7 Jul 2016 17:12:21 +0200 Subject: [PATCH] Remove the empty stable-rust crate. --- ports/stable-rust/.gitignore | 1 - ports/stable-rust/Cargo.toml | 6 ------ ports/stable-rust/src/lib.rs | 10 ---------- 3 files changed, 17 deletions(-) delete mode 100644 ports/stable-rust/.gitignore delete mode 100644 ports/stable-rust/Cargo.toml delete mode 100644 ports/stable-rust/src/lib.rs 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() { - } -}