mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
fix unused
This commit is contained in:
parent
8068302fef
commit
a2eb7e5739
2 changed files with 2 additions and 4 deletions
|
@ -9,7 +9,6 @@ use rustc_hash::FxHashSet;
|
||||||
use crate::completion::{
|
use crate::completion::{
|
||||||
completion_context::CompletionContext,
|
completion_context::CompletionContext,
|
||||||
completion_item::{CompletionItem, CompletionItemKind, CompletionKind, Completions},
|
completion_item::{CompletionItem, CompletionItemKind, CompletionKind, Completions},
|
||||||
unstable_feature_descriptor
|
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::completion::UNSTABLE_FEATURE_DESCRIPTOR;
|
use crate::completion::UNSTABLE_FEATURE_DESCRIPTOR;
|
||||||
|
|
|
@ -5,9 +5,8 @@ use crate::{
|
||||||
};
|
};
|
||||||
use std::process::Command;
|
use std::process::Command;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
use std::path::{Path, PathBuf};
|
use walkdir::WalkDir;
|
||||||
use walkdir::{DirEntry, WalkDir};
|
use quote::quote;
|
||||||
use quote::{format_ident, quote};
|
|
||||||
use crate::codegen::update;
|
use crate::codegen::update;
|
||||||
|
|
||||||
pub fn generate_unstable_future_descriptor(mode: Mode) -> Result<()> {
|
pub fn generate_unstable_future_descriptor(mode: Mode) -> Result<()> {
|
||||||
|
|
Loading…
Reference in a new issue