Skip to content

Commit

Permalink
fix: ensure ci runs use rust 1.84.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed Feb 19, 2025
1 parent b78550e commit 6cc414c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/live-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
distribution: temurin
java-version: 11

- name: "Set default Rust version to 1.77.1"
run: rustup default 1.77.1
- name: "Set default Rust version to 1.84.1"
run: rustup default 1.84.1

- name: "Build library and run tests"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
with:
submodules: true

- name: "Install Rust 1.77.1"
- name: "Install Rust 1.84.1"
uses: actions-rs/toolchain@v1
with:
toolchain: 1.77.1
toolchain: 1.84.1

- name: "Generate bdk.py and binaries"
run: bash ./scripts/generate-linux.sh
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ just publishlocal
```

## Minimum Supported Rust Version (MSRV)
This library should compile with any combination of features with Rust 1.77.1.
This library should compile with any combination of features with Rust 1.84.1.

## Contributing
To add new structs and functions, see the [UniFFI User Guide](https://mozilla.github.io/uniffi-rs/) and the [uniffi-examples](https://thunderbiscuit.github.io/uniffi-examples/) repository.
Expand Down

0 comments on commit 6cc414c

Please sign in to comment.