From 605e3b2c56f74ff6b5395b0e1d88f69295c54fba Mon Sep 17 00:00:00 2001 From: Anders429 Date: Thu, 6 Jun 2024 15:10:19 -0600 Subject: [PATCH] Fix docs.rs build. --- gba_test/CHANGELOG.md | 4 ++++ gba_test/Cargo.toml | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gba_test/CHANGELOG.md b/gba_test/CHANGELOG.md index 9f7169f..9782943 100644 --- a/gba_test/CHANGELOG.md +++ b/gba_test/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.2 - 2024-06-06 +### Fixed +- Provide correct target for docs.rs build. + ## 0.1.1 - 2024-06-06 ### Fixed - Enabled `doc_cfg` feature to fix documentation build. diff --git a/gba_test/Cargo.toml b/gba_test/Cargo.toml index 7964e2d..6ada8b1 100644 --- a/gba_test/Cargo.toml +++ b/gba_test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gba_test" -version = "0.1.1" +version = "0.1.2" authors = ["Anders Evensen"] edition = "2021" license = "MIT OR Apache-2.0" @@ -15,6 +15,7 @@ keywords = ["gba", "test", "testing", "framework", "development"] # RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --no-deps --open all-features = true rustdoc-args = ["--cfg", "doc_cfg"] +targets = ["armv5te-unknown-linux-gnueabi"] [profile.dev] opt-level = 3