Skip to content

Commit 2c9822d

Browse files
committed
Downgrade compiler back to nightly-2024-11-09
The newer versions have a faulty rust-analyzer which does not work well with the Helix editor. The auto completion sometimes changes while cycling through them. We need to wait until this is fixed either here helix-editor/helix#12119 or here rust-lang/rust-analyzer#18547
1 parent 9728d3c commit 2c9822d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [
55
"userspace",
66
]
77
default-members = ["kernel"]
8-
resolver = "3"
8+
resolver = "2"
99

1010
[workspace.package]
1111
description = "Yet another Rust Operating System (YaROS)"

common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "common"
3-
edition = "2024"
3+
edition = "2021"
44
description.workspace = true
55
authors.workspace = true
66
version.workspace = true

kernel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yaros"
3-
edition = "2024"
3+
edition = "2021"
44
version.workspace = true
55
authors.workspace = true
66
description.workspace = true

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2024-12-04"
2+
channel = "nightly-2024-11-09"
33
targets = ["riscv64gc-unknown-none-elf"]

userspace/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "userspace"
3-
edition = "2024"
3+
edition = "2021"
44
version.workspace = true
55
authors.workspace = true
66
description.workspace = true

0 commit comments

Comments
 (0)