Skip to content

Commit 86ffd1c

Browse files
build: use rust compiler 1.77.1 for all builds
1 parent 7b0ce66 commit 86ffd1c

File tree

14 files changed

+25
-25
lines changed

14 files changed

+25
-25
lines changed

.github/workflows/cont_integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
rust:
20-
- version: 1.73.0
20+
- version: 1.77.1
2121
clippy: true
2222
steps:
2323
- name: "Checkout"

.github/workflows/live-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
distribution: temurin
2828
java-version: 11
2929

30-
- name: "Set default Rust version to 1.73.0"
31-
run: rustup default 1.73.0
30+
- name: "Set default Rust version to 1.77.1"
31+
run: rustup default 1.77.1
3232

3333
- name: "Build bdk-jvm library"
3434
run: |

.github/workflows/publish-android.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
distribution: temurin
2626
java-version: 17
2727

28-
- name: "Set default Rust version to 1.73.0"
29-
run: rustup default 1.73.0
28+
- name: "Set default Rust version to 1.77.1"
29+
run: rustup default 1.77.1
3030

3131
- name: "Install Rust Android targets"
3232
run: rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi

.github/workflows/publish-jvm.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
distribution: temurin
2525
java-version: 17
2626

27-
- name: "Set default Rust version to 1.73.0"
28-
run: rustup default 1.73.0
27+
- name: "Set default Rust version to 1.77.1"
28+
run: rustup default 1.77.1
2929

3030
- name: "Install aarch64 Rust target"
3131
run: rustup target add aarch64-apple-darwin
@@ -54,8 +54,8 @@ jobs:
5454
distribution: temurin
5555
java-version: 17
5656

57-
- name: "Set default Rust version to 1.73.0"
58-
run: rustup default 1.73.0
57+
- name: "Set default Rust version to 1.77.1"
58+
run: rustup default 1.77.1
5959

6060
- name: "Install x86_64-pc-windows-msvc Rust target"
6161
run: rustup target add x86_64-pc-windows-msvc
@@ -94,8 +94,8 @@ jobs:
9494
distribution: temurin
9595
java-version: 17
9696

97-
- name: "Set default Rust version to 1.73.0"
98-
run: rustup default 1.73.0
97+
- name: "Set default Rust version to 1.77.1"
98+
run: rustup default 1.77.1
9999

100100
- name: "Build bdk-jvm library"
101101
run: |

.github/workflows/test-android.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
distribution: temurin
3838
java-version: 17
3939

40-
- name: "Set default Rust version to 1.73.0"
41-
run: rustup default 1.73.0
40+
- name: "Set default Rust version to 1.77.1"
41+
run: rustup default 1.77.1
4242

4343
- name: "Install Rust Android targets"
4444
run: rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi

.github/workflows/test-jvm.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
distribution: temurin
3333
java-version: 17
3434

35-
- name: "Set default Rust version to 1.73.0"
36-
run: rustup default 1.73.0
35+
- name: "Set default Rust version to 1.77.1"
36+
run: rustup default 1.77.1
3737

3838
- name: "Run JVM tests"
3939
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ just publishlocal
3737
```
3838

3939
## Minimum Supported Rust Version (MSRV)
40-
This library should compile with any combination of features with Rust 1.73.0.
40+
This library should compile with any combination of features with Rust 1.77.1.
4141

4242
## Contributing
4343
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.

bdk-android/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ _Note that Kotlin version `1.9.23` or later is required to build the library._
3838
git clone https://github.com/bitcoindevkit/bdk-ffi
3939
```
4040
2. Follow the "General" bdk-ffi ["Getting Started (Developer)"] instructions.
41-
3. Install Rust (note that we are currently building using Rust 1.73.0):
41+
3. Install Rust (note that we are currently building using Rust 1.77.1):
4242
```shell
4343
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
44-
rustup default 1.73.0
44+
rustup default 1.77.1
4545
```
4646
4. Install required targets
4747
```sh

bdk-jvm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ curl -s "https://get.sdkman.io" | bash
3636
source "$HOME/.sdkman/bin/sdkman-init.sh"
3737
sdk install java 17.0.2-tem
3838
```
39-
2. Install Rust (note that we are currently building using Rust 1.73.0):
39+
2. Install Rust (note that we are currently building using Rust 1.77.1):
4040
```shell
4141
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
42-
rustup default 1.73.0
42+
rustup default 1.77.1
4343
```
4444
3. Clone this repository.
4545
```shell

bdk-python/scripts/generate-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cd ../bdk-ffi/
99
cargo run --bin uniffi-bindgen generate src/bdk.udl --language python --out-dir ../bdk-python/src/bdkpython/ --no-format
1010

1111
echo "Generating native binaries..."
12-
rustup default 1.73.0
12+
rustup default 1.77.1
1313
cargo build --profile release-smaller
1414

1515
echo "Copying linux libbdkffi.so..."

0 commit comments

Comments
 (0)