Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[build]
rustflags = [
"-C",
"force-unwind-tables",
]
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
build:
strategy:
matrix:
rust-toolchain: ["1.83"]
os: [ubuntu-24.04, macos-14, windows-2022]
rust-toolchain: ["1.89"]
os: [ubuntu-24.04, macos-14, windows-2025]
arch: [amd64, arm64]
exclude:
- os: windows-2022
- os: windows-2025
arch: arm64
include:
- os: ubuntu-24.04
Expand All @@ -22,7 +22,7 @@ jobs:
- os: macos-14
name: darwin
rust_abi: apple-darwin
- os: windows-2022
- os: windows-2025
name: windows
rust_abi: pc-windows-msvc
extension: .exe
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
test:
strategy:
matrix:
platform: [ubuntu-22.04, ubuntu-24.04, windows-2022, macos-13, macos-14, macos-15]
platform: [ubuntu-22.04, ubuntu-24.04, windows-2025, macos-13, macos-14, macos-15]
rust-toolchain: ["1.89"]
runs-on: ${{ matrix.platform }}
env:
SCCACHE_GHA_ENABLED: "true"
Expand All @@ -20,7 +21,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update --no-self-update 1.83 && rustup default 1.83
run: rustup update --no-self-update ${{ matrix.rust-toolchain }} && rustup default ${{ matrix.rust-toolchain }}
shell: bash
- name: Add wasm32-wasip1 Rust target
run: rustup target add wasm32-wasip1
Expand Down Expand Up @@ -52,7 +53,7 @@ jobs:
trap-test:
strategy:
matrix:
platform: [ubuntu-22.04, ubuntu-24.04, windows-2022, macos-13, macos-14, macos-15]
platform: [ubuntu-22.04, ubuntu-24.04, windows-2025, macos-13, macos-14, macos-15]
runs-on: ${{ matrix.platform }}
env:
SCCACHE_GHA_ENABLED: "true"
Expand All @@ -63,7 +64,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update --no-self-update 1.83 && rustup default 1.83
run: rustup update --no-self-update ${{ matrix.rust-toolchain }} && rustup default ${{ matrix.rust-toolchain }}
shell: bash
- name: Add wasm32-wasip1 Rust target
run: rustup target add wasm32-wasip1
Expand All @@ -89,7 +90,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update 1.83 && rustup default 1.83
run: rustup update ${{ matrix.rust-toolchain }} && rustup default ${{ matrix.rust-toolchain }}
shell: bash
- name: Check crates can be published
run: make package-check
Expand Down
Loading
Loading