diff --git a/Cargo.toml b/Cargo.toml index c67ca0b..37b77eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crablit" -version = "0.1.6-git" +version = "0.1.6" authors = ["Jeromos Kovács "] description = "A cli learning app using spaced repetition." categories = ["command-line-interface"] @@ -26,13 +26,15 @@ eula = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -# to collect arguments +# to collect cli arguments clap = { version = "4.4.8", features = ["derive"] } # for colored output colored = "2.0" +# for data_dir dirs = "5.0.1" # for shuffling deck nanorand = "0.7.0" +# for fixing stupid windows' colours output_vt100 = "0.1.3" # for editable input rustyline = "13.0.0"