aarch64-apple-darwin is a tier 1 platform while x86_64-apple-darwin is a tier 2 platform, but docs.rs still builds docs for x86_64-apple-darwin by default and not aarch64-apple-darwin. Should this be changed? I'm currently using the following section in Cargo.toml to build for this platform:
[package.metadata.docs.rs]
all-features = true
cargo-args = ["-Zbuild-std=std"]
default-target = "x86_64-unknown-linux-gnu"
targets = [
"aarch64-apple-darwin",
"x86_64-unknown-openbsd"
]