Skip to content

Commit 1346a46

Browse files
authored
toolchain: Update to newer Rust versions (#290)
#### Problem This repo is still using old toolchains, which makes it impossible to bump some dependencies, which use newer Rust versions. #### Summary of changes Bump the toolchains.
1 parent b9613a5 commit 1346a46

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ resolver = "2"
33
members = ["program"]
44

55
[workspace.metadata.cli]
6-
solana = "3.0.0"
6+
solana = "3.1.11"
77

88
# Specify Rust toolchains for rustfmt, clippy, and build.
99
# Any unprovided toolchains default to stable.
1010
[workspace.metadata.toolchains]
11-
format = "nightly-2025-02-16"
12-
lint = "nightly-2025-02-16"
11+
format = "nightly-2026-01-22"
12+
lint = "nightly-2026-01-22"
1313

1414
[workspace.metadata.spellcheck]
1515
config = "scripts/spellcheck.toml"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
RUST_TOOLCHAIN_NIGHTLY = nightly-2025-02-16
2-
SOLANA_CLI_VERSION = 2.3.4
1+
RUST_TOOLCHAIN_NIGHTLY = nightly-2026-01-22
2+
SOLANA_CLI_VERSION = 3.1.11
33

44
nightly = +${RUST_TOOLCHAIN_NIGHTLY}
55

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.86.0"
2+
channel = "1.93.1"

0 commit comments

Comments
 (0)