From 0d6214f930b7d063548040fdf5f312a652291c23 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Fri, 14 Jul 2023 14:06:44 -0400 Subject: [PATCH] build(docs.rs): cover more Mac targets --- Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bdd338e..07bd17b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,13 @@ edition = "2021" exclude = ["guide/**/*", "examples/texture/**/*", "tests/**/*", "Cargo.lock", "target/**/*"] [package.metadata.docs.rs] -default-target = "x86_64-apple-darwin" +targets = [ + "aarch64-apple-darwin", # presented first in Docs.rs, keep this here + "aarch64-apple-ios", + "aarch64-apple-ios-sim", + "x86_64-apple-darwin", + "x86_64-apple-ios", +] [features] default = ["link"]