From bf957e352319a6c00236e77861d678cd1fea910b Mon Sep 17 00:00:00 2001 From: houseme Date: Mon, 2 Mar 2026 23:59:34 +0800 Subject: [PATCH] remove rustflags target cpu (#2052) --- .github/workflows/build.yml | 8 ++++---- Cargo.lock | 18 +++++++++--------- Cargo.toml | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 266d6cdb8..80dc2f6b1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -174,7 +174,7 @@ jobs: target: x86_64-unknown-linux-musl cross: false platform: linux - rustflags: '-C target-cpu=x86-64-v2' + rustflags: '' - os: ubicloud-standard-2 target: aarch64-unknown-linux-musl cross: true @@ -184,7 +184,7 @@ jobs: target: x86_64-unknown-linux-gnu cross: false platform: linux - rustflags: '-C target-cpu=x86-64-v2' + rustflags: '' - os: ubicloud-standard-2 target: aarch64-unknown-linux-gnu cross: true @@ -200,13 +200,13 @@ jobs: target: x86_64-apple-darwin cross: false platform: macos - rustflags: '-C target-cpu=x86-64-v2' + rustflags: '' # Windows builds (temporarily disabled) - os: windows-latest target: x86_64-pc-windows-msvc cross: false platform: windows - rustflags: '-C target-cpu=x86-64-v2' + rustflags: '' #- os: windows-latest # target: aarch64-pc-windows-msvc # cross: true diff --git a/Cargo.lock b/Cargo.lock index e4c8ba4c6..637d5f40d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4385,9 +4385,9 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.5" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20dd69640582458beceefcf045f8de34263d45194999c9a49fcd53e5b503d522" +checksum = "90807d610575744524d9bdc69f3885d96f0e6c3354565b0828354a7ff2a262b8" dependencies = [ "ahash", "clap", @@ -5086,9 +5086,9 @@ dependencies = [ [[package]] name = "moka" -version = "0.12.13" +version = "0.12.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ac832c50ced444ef6be0767a008b02c106a909ba79d1d830501e94b96f6b7e" +checksum = "85f8024e1c8e71c778968af91d43700ce1d11b219d127d79fb2934153b82b42b" dependencies = [ "async-lock", "crossbeam-channel", @@ -6109,7 +6109,7 @@ dependencies = [ "anyhow", "backtrace", "flate2", - "inferno 0.12.5", + "inferno 0.12.6", "num", "paste", "prost", @@ -8892,9 +8892,9 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.38.2" +version = "0.38.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1efc19935b4b66baa6f654ac7924c192f55b175c00a7ab72410fc24284dacda8" +checksum = "d03c61d2a49c649a15c407338afe7accafde9dac869995dccb73e5f7ef7d9034" dependencies = [ "libc", "memchr", @@ -10578,9 +10578,9 @@ dependencies = [ [[package]] name = "zlib-rs" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c745c48e1007337ed136dc99df34128b9faa6ed542d80a1c673cf55a6d7236c8" +checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513" [[package]] name = "zmij" diff --git a/Cargo.toml b/Cargo.toml index fc921ec24..0d1f77a5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -216,7 +216,7 @@ matchit = "0.9.1" md-5 = "0.11.0-rc.5" md5 = "0.8.0" mime_guess = "2.0.5" -moka = { version = "0.12.13", features = ["future"] } +moka = { version = "0.12.14", features = ["future"] } netif = "0.1.6" num_cpus = { version = "1.17.0" } nvml-wrapper = "0.12.0" @@ -245,7 +245,7 @@ snafu = "0.8.9" snap = "1.1.1" starshard = { version = "1.1.0", features = ["rayon", "async", "serde"] } strum = { version = "0.28.0", features = ["derive"] } -sysinfo = "0.38.2" +sysinfo = "0.38.3" temp-env = "0.3.6" tempfile = "3.26.0" test-case = "3.3.1"