Skip to content

Commit 84fbc78

Browse files
chore: update dependencies (#838)
1 parent e34af07 commit 84fbc78

File tree

26 files changed

+668
-620
lines changed

26 files changed

+668
-620
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches: [ main ]
77

88
env:
9-
RUST_NIGHTLY_TOOLCHAIN: nightly-2025-02-07
9+
RUST_NIGHTLY_TOOLCHAIN: nightly-2025-02-22
1010
RUSTFLAGS: -Clinker=/usr/bin/clang -Clink-arg=--ld-path=/usr/local/bin/mold -Ctarget-cpu=native -Zshare-generics=y -Zthreads=0
1111

1212
jobs:

.github/workflows/ci.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88
merge_group:
9-
branches: [ main ]
9+
branches: [main]
1010

1111
jobs:
1212
fmt:
@@ -100,7 +100,12 @@ jobs:
100100
strategy:
101101
fail-fast: false
102102
matrix:
103-
os: [ubuntu-latest, macos-latest, macos-14, windows-latest] # macos-14 is for Apple Silicon
103+
os:
104+
- ubuntu-latest
105+
# commenting these out because getting a weird error with ring that does not occur when building locally on MacBook Pro M2
106+
# - macos-latest
107+
# - macos-14
108+
- windows-latest
104109
runs-on: ${{ matrix.os }}
105110
steps:
106111
- uses: actions/checkout@v4
@@ -117,4 +122,4 @@ jobs:
117122
with:
118123
cache-on-failure: "true"
119124
- name: Run tests
120-
run: cargo test --all-features
125+
run: cargo test --all-features

0 commit comments

Comments
 (0)