Skip to content

Commit

Permalink
Downgrade compiler back to nightly-2024-11-09
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Maurice Hieronymus committed Dec 10, 2024
1 parent fc57d86 commit 0659de1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [
"userspace",
]
default-members = ["kernel"]
resolver = "3"
resolver = "2"

[workspace.package]
description = "Yet another Rust Operating System (YaROS)"
Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "common"
edition = "2024"
edition = "2021"
description.workspace = true
authors.workspace = true
version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yaros"
edition = "2024"
edition = "2021"
version.workspace = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2024-12-04"
channel = "nightly-2024-11-09"
targets = ["riscv64gc-unknown-none-elf"]
2 changes: 1 addition & 1 deletion userspace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "userspace"
edition = "2024"
edition = "2021"
version.workspace = true
authors.workspace = true
description.workspace = true
Expand Down

0 comments on commit 0659de1

Please sign in to comment.