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
This commit is contained in:
Luna Mittelbach 2022-04-12 16:46:36 +02:00 committed by GitHub
parent 5c5081ddc4
commit 380b3612b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 <zefria@gmail.com>", "Thomas Winwood <twwinwood@gmail.com>"]
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"]