Add Roadmap

This commit is contained in:
Chaoscaot
2023-03-16 21:09:41 +01:00
parent 0e31714582
commit f4bcde73f9
4 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,7 @@
members = [
"schemsearch-cli",
"schemsearch-lib",
"schemsearch_faster",
"schemsearch-faster",
"schemsearch-files",
"schemsearch-sql",
"schemsearch-java"

View File

@ -22,7 +22,6 @@ use std::fs::File;
use std::io;
use std::io::{BufWriter, Write};
use clap::{command, Arg, ArgAction, ValueHint};
use schemsearch_files::Schematic;
use std::path::PathBuf;
use clap::error::ErrorKind;
use schemsearch_lib::{search, SearchBehavior};
@ -37,7 +36,7 @@ use schemsearch_sql::filter::SchematicFilter;
use schemsearch_sql::load_all_schematics;
#[cfg(feature = "sql")]
use crate::types::SqlSchematicSupplier;
use indicatif::{ProgressBar, ParallelProgressIterator, ProgressStyle};
use indicatif::{ParallelProgressIterator, ProgressStyle};
fn main() {
#[allow(unused_mut)]