From 881828f6d742eec420499f984f859d105377725d Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 28 Sep 2023 15:33:34 -0400 Subject: [PATCH] build-sys: Filter to tier 2 Linux declaratively Newer cargo-vendor-filterer allows us to avoid enumerating the full matrix of (architecture, gnu|musl) here. Signed-off-by: Colin Walters --- Cargo.toml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4d058dd6f..190a65e3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,11 +13,8 @@ exclude = ["/.cirrus.yml", "/.github/*", "/hack/*"] build = "build.rs" [package.metadata.vendor-filter] -# This list is not exhaustive. -platforms = ["x86_64-unknown-linux-gnu", "aarch64-unknown-linux-gnu", "powerpc64le-unknown-linux-gnu", - "s390x-unknown-linux-gnu", "riscv64gc-unknown-linux-gnu", - "x86_64-unknown-linux-musl", "aarch64-unknown-linux-musl", - ] +platforms = ["*-unknown-linux-*"] +tier = "2" [[bin]] name = "netavark"