diff --git a/Cargo.lock b/Cargo.lock index f99e345..946a9be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,7 +178,7 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "crablit" -version = "0.1.6-git" +version = "0.1.12" dependencies = [ "chrono", "clap", @@ -450,9 +450,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.33" +version = "0.38.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3cc72858054fcff6d7dea32df2aeaee6a7c24227366d7ea429aada2f26b16ad" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" dependencies = [ "bitflags", "errno", diff --git a/Cargo.toml b/Cargo.toml index f261494..b400586 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crablit" -version = "0.1.6-git" +version = "0.1.12" authors = ["Jeromos Kovács "] description = "A cli learning app using spaced repetition." categories = ["command-line-interface"] diff --git a/src/config.rs b/src/config.rs index 1825fd6..c4a1f27 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,7 +1,6 @@ //! # In this module, you can find code that helps in collecting cli arguments and determining properties of a file containing vocab data. use crate::*; use clap::Parser; -use log::*; use std::{collections::HashMap, path::PathBuf}; #[derive(Parser, Debug, PartialEq)]