mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-08-23 01:54:08 +00:00
Update to latest rust nightly
I'm not sure if these 2 packages are same since I can't find any document direct to std::lazy::OnceCell
This commit is contained in:
parent
d1d1e2377b
commit
b6da5c97fb
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ export class Extension {
|
|||
|
||||
readonly package: {
|
||||
version: string
|
||||
} = vscode.extensions.getExtension(this.extensionID)!.packageJSON;
|
||||
} = vscode.extensions.getExtension(this.extensionID)!.packageJSON
|
||||
|
||||
public get context(): vscode.ExtensionContext {
|
||||
return this.extensionContext
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use std::{collections::HashMap, lazy::OnceCell, path::Path};
|
||||
use std::{collections::HashMap, cell::OnceCell, path::Path};
|
||||
|
||||
use regex::Regex;
|
||||
use rust_lsp::lsp_types::{Diagnostic, DiagnosticSeverity, Position, Range};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue