Skip to content

Commit 085a25e

Browse files
authored
chore: catch up dependencies (#183)
Signed-off-by: tison <wander4096@gmail.com>
1 parent 209483f commit 085a25e

File tree

13 files changed

+599
-425
lines changed

13 files changed

+599
-425
lines changed

.cargo/config.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@
1515
# See also https://github.com/rust-lang/rust/issues/44991
1616

1717
[target.x86_64-unknown-linux-musl]
18-
rustflags = [
19-
"-C", "target-feature=-crt-static",
20-
]
18+
rustflags = ["-C", "target-feature=-crt-static"]
2119

2220
[target.aarch64-unknown-linux-musl]
23-
rustflags = [
24-
"-C", "target-feature=-crt-static",
25-
]
21+
rustflags = ["-C", "target-feature=-crt-static"]

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
test:
4949
strategy:
5050
matrix:
51-
rust-version: ["1.76.0", "stable"]
51+
rust-version: ["1.85.0", "stable"]
5252
name: Build and test
5353
runs-on: ubuntu-24.04
5454
steps:

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ on:
4747
jobs:
4848
# Run 'cargo dist plan' (or host) to determine what tasks we need to do
4949
plan:
50-
runs-on: "ubuntu-20.04"
50+
runs-on: "ubuntu-22.04"
5151
outputs:
5252
val: ${{ steps.plan.outputs.manifest }}
5353
tag: ${{ !github.event.pull_request && github.ref_name || '' }}
@@ -160,7 +160,7 @@ jobs:
160160
needs:
161161
- plan
162162
- build-local-artifacts
163-
runs-on: "ubuntu-20.04"
163+
runs-on: "ubuntu-22.04"
164164
env:
165165
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
166166
BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json
@@ -210,7 +210,7 @@ jobs:
210210
if: ${{ always() && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }}
211211
env:
212212
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
213-
runs-on: "ubuntu-20.04"
213+
runs-on: "ubuntu-22.04"
214214
outputs:
215215
val: ${{ steps.host.outputs.manifest }}
216216
steps:
@@ -274,7 +274,7 @@ jobs:
274274
# still allowing individual publish jobs to skip themselves (for prereleases).
275275
# "host" however must run to completion, no skipping allowed!
276276
if: ${{ always() && needs.host.result == 'success' }}
277-
runs-on: "ubuntu-20.04"
277+
runs-on: "ubuntu-22.04"
278278
env:
279279
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
280280
steps:

0 commit comments

Comments
 (0)