diff --git a/Cargo.lock b/Cargo.lock index ed40951..780d13a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1177,8 +1177,8 @@ dependencies = [ ] [[package]] -name = "mastermind" -version = "1.0.0" +name = "mastermind-cli" +version = "1.0.1" dependencies = [ "clap", "comfy-table", diff --git a/Cargo.toml b/Cargo.toml index 3930b7c..287e087 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "mastermind" -version = "1.0.0" +name = "mastermind-cli" +version = "1.0.1" edition = "2021" authors = ["theoforger "] license-file = "LICENSE" diff --git a/src/main.rs b/src/main.rs index 8db650e..4f91f71 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,7 +3,7 @@ use dotenv::dotenv; use std::env; use std::error::Error; -use mastermind::{ +use mastermind_cli::{ api, clues, configs, model_collection, read_words_from_file, write_content_to_file, Args, };