From 68fb9c7e020763fa0790bcac8163941aa8574e07 Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Thu, 15 Sep 2022 22:39:44 +0100 Subject: [PATCH] Remove reference to the testing feature --- agb/src/lib.rs | 6 ------ examples/the-hat-chooses-the-wizard/Cargo.toml | 3 --- template/Cargo.toml | 3 --- 3 files changed, 12 deletions(-) diff --git a/agb/src/lib.rs b/agb/src/lib.rs index b3cd8b4a..6aea3136 100644 --- a/agb/src/lib.rs +++ b/agb/src/lib.rs @@ -253,12 +253,6 @@ impl Gba { /// #![cfg_attr(test, test_runner(agb::test_runner::test_runner))] /// ``` /// -/// And ensure you add agb with the `testing` feature to your `dev-dependencies` -/// ```toml -/// [dev-dependencies] -/// agb = { version = "", features = ["testing"] } -/// ``` -/// /// With this support, you will be able to write tests which you can run using `mgba-test-runner`. /// Tests are written using `#[test_case]` rather than `#[test]`. /// diff --git a/examples/the-hat-chooses-the-wizard/Cargo.toml b/examples/the-hat-chooses-the-wizard/Cargo.toml index b8b3178b..510a14e8 100644 --- a/examples/the-hat-chooses-the-wizard/Cargo.toml +++ b/examples/the-hat-chooses-the-wizard/Cargo.toml @@ -9,9 +9,6 @@ edition = "2018" [dependencies] agb = { version = "0.11.1", path = "../../agb" } -[dev-dependencies] -agb = { version = "0.11.1", path = "../../agb", features = ["testing"] } - [build-dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/template/Cargo.toml b/template/Cargo.toml index 645adb04..5f5bfafa 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -9,9 +9,6 @@ edition = "2018" [dependencies] agb = "0.11.1" -[dev-dependencies] -agb = { version = "0.11.1", features = ["testing"] } - [profile.dev] opt-level = 2 debug = true