Fix Imports

This commit is contained in:
Chaoscaot
2023-03-16 21:33:23 +01:00
parent f4bcde73f9
commit b082d6cd8d
2 changed files with 1 additions and 1 deletions

View File

@ -37,6 +37,7 @@ use schemsearch_sql::load_all_schematics;
#[cfg(feature = "sql")] #[cfg(feature = "sql")]
use crate::types::SqlSchematicSupplier; use crate::types::SqlSchematicSupplier;
use indicatif::{ParallelProgressIterator, ProgressStyle}; use indicatif::{ParallelProgressIterator, ProgressStyle};
use schemsearch_files::Schematic;
fn main() { fn main() {
#[allow(unused_mut)] #[allow(unused_mut)]

View File

@ -18,7 +18,6 @@
use std::path::PathBuf; use std::path::PathBuf;
#[cfg(feature = "sql")] #[cfg(feature = "sql")]
use futures::executor::block_on; use futures::executor::block_on;
use schemsearch_files::Schematic;
#[cfg(feature = "sql")] #[cfg(feature = "sql")]
use schemsearch_sql::{load_schemdata, SchematicNode}; use schemsearch_sql::{load_schemdata, SchematicNode};