Skip to content

Commit

Permalink
chore: update to Rust 1.74 (denoland#21210)
Browse files Browse the repository at this point in the history
Update to Rust 1.74
  • Loading branch information
linbingquan authored Nov 17, 2023
1 parent 29011d5 commit 9a1c697
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/lsp/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ impl Config {
pub fn new() -> Self {
Self {
client_capabilities: ClientCapabilities::default(),
/// Root provided by the initialization parameters.
// Root provided by the initialization parameters.
settings: Default::default(),
workspace_folders: vec![],
maybe_config_file_info: None,
Expand Down
1 change: 1 addition & 0 deletions runtime/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ fn main() {
let snapshot_slice = &[];
#[allow(clippy::needless_borrow)]
#[allow(clippy::disallowed_methods)]
#[allow(clippy::needless_borrows_for_generic_args)]
std::fs::write(&runtime_snapshot_path, snapshot_slice).unwrap();
}

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.73.0"
channel = "1.74.0"
components = ["rustfmt", "clippy"]

0 comments on commit 9a1c697

Please sign in to comment.