Remove unused imports

This commit is contained in:
Patrick Förster 2019-06-11 15:03:22 +02:00
parent fd4d3e7a2e
commit d99672c5bc
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,7 @@
use crate::data::bibtex_entry_type::BibtexEntryType;
use crate::data::bibtex_field::BibtexField;
use crate::formatting::bibtex;
use crate::formatting::bibtex::{BibtexFormattingOptions, BibtexFormattingParams};
use crate::formatting::bibtex::BibtexFormattingParams;
use crate::syntax::bibtex::BibtexEntry;
use lsp_types::*;
use serde::{Deserialize, Serialize};

View file

@ -5,7 +5,6 @@ use crate::syntax::latex::LatexCommand;
use futures_boxed::boxed;
use lsp_types::{CompletionItem, CompletionParams};
use std::path::{Path, PathBuf};
use std::str::FromStr;
use std::sync::Arc;
use walkdir::WalkDir;