mirror of
https://github.com/italicsjenga/gba.git
synced 2024-12-23 19:01:30 +11:00
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:
parent
5c5081ddc4
commit
380b3612b8
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gba"
|
name = "gba"
|
||||||
description = "A crate for making GBA games with Rust."
|
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>"]
|
authors = ["Lokathor <zefria@gmail.com>", "Thomas Winwood <twwinwood@gmail.com>"]
|
||||||
repository = "https://github.com/rust-console/gba"
|
repository = "https://github.com/rust-console/gba"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -31,5 +31,5 @@ panic = "abort"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
default-target = "thumbv4t-none-eabi"
|
default-target = "thumbv4t-none-eabi"
|
||||||
cargoflags = ["-Zbuild-std=core"]
|
cargo-args = ["-Z", "build-std=core"]
|
||||||
rustdoc-args = ["--cfg","docs_rs"]
|
rustdoc-args = ["--cfg","docs_rs"]
|
||||||
|
|
Loading…
Reference in a new issue