From 380b3612b802a6be963e40eac65f9b1c10003270 Mon Sep 17 00:00:00 2001 From: Luna Mittelbach Date: Tue, 12 Apr 2022 16:46:36 +0200 Subject: [PATCH] Cargo.toml: cargoflags -> cargo-args (#164) Per https://docs.rs/about/metadata this hopefully fixes builds on docs.rs. Minor version bump so that docs.rs can pick up the new version from crates.io --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4b5c6bf..6bed1a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gba" description = "A crate for making GBA games with Rust." -version = "0.5.2" +version = "0.5.3" authors = ["Lokathor ", "Thomas Winwood "] repository = "https://github.com/rust-console/gba" readme = "README.md" @@ -31,5 +31,5 @@ panic = "abort" [package.metadata.docs.rs] default-target = "thumbv4t-none-eabi" -cargoflags = ["-Zbuild-std=core"] +cargo-args = ["-Z", "build-std=core"] rustdoc-args = ["--cfg","docs_rs"]