From d0137a93df99d88728cc1dbc6c37e89d39ec2914 Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Sun, 19 Jun 2022 12:01:34 -0300 Subject: [PATCH] chore: use rust 1.61.0 (#14911) --- cli/lsp/tsc.rs | 6 +++--- rust-toolchain.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs index a2189f52cb..6ff4cba00f 100644 --- a/cli/lsp/tsc.rs +++ b/cli/lsp/tsc.rs @@ -1583,9 +1583,9 @@ impl RefactorEditInfo { #[serde(rename_all = "camelCase")] pub struct CodeAction { // description: String, -// changes: Vec, -// #[serde(skip_serializing_if = "Option::is_none")] -// commands: Option>, + // changes: Vec, + // #[serde(skip_serializing_if = "Option::is_none")] + // commands: Option>, } #[derive(Debug, Clone, Deserialize, Serialize, PartialEq, Eq)] diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 36189978f7..e2609326f7 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.60.0" +channel = "1.61.0" components = ["rustfmt", "clippy"]