Make aarch64-apple-darwin one of the default targets for docs.rs

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"
]
5 Likes

I should have taken the time to create a GitHub issue instead of posting here. I apologize for the noise. This will be fixed soon. Feel free to close this.

2 Likes