remove rustflags target cpu (#2052)

This commit is contained in:
houseme
2026-03-02 23:59:34 +08:00
committed by GitHub
parent a6090b98dc
commit bf957e3523
3 changed files with 15 additions and 15 deletions

View File

@@ -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

18
Cargo.lock generated
View File

@@ -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"

View File

@@ -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"