Skip to content

Commit 66db0f1

Browse files
authored
chore: update Rust to 1.88 and use wasm32v1-none
1 parent c6166d1 commit 66db0f1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ match this change.
2626
* `authority-selection-inherents` crate now exports all its public members from the crate root
2727
* `select_authorities` in `authority-selection-inherents` crate now returns a `BoundedVec` of `CommitteeMembers`. Projects that used the old version no longer
2828
need to transform the data in their own runtime code
29+
* Updates Rust dependency to v1.88, changes WASM target to 'wasm32v1-none'
2930

3031
## Added
3132

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
};
3939
rustToolchain = fenix.packages.${system}.fromToolchainFile {
4040
file = ./rust-toolchain.toml;
41-
sha256 = "X/4ZBHO3iW0fOenQ3foEvscgAPJYl2abspaBThDOukI=";
41+
sha256 = "Qxt8XAuaUR2OMdKbN4u8dBJOhSHxS+uS06Wl9+flVEk=";
4242
};
4343

4444
isLinux = pkgs.stdenv.isLinux;

rust-toolchain.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.86.0"
2+
channel = "1.88.0"
33
components = [
44
"cargo",
55
"clippy",
@@ -10,5 +10,5 @@ components = [
1010
"rustc",
1111
"rustfmt",
1212
]
13-
targets = ["wasm32-unknown-unknown"]
13+
targets = ["wasm32v1-none"]
1414
profile = "minimal"

0 commit comments

Comments
 (0)