diff --git a/Cargo.lock b/Cargo.lock index 603836e..c0e6128 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -234,12 +234,10 @@ dependencies = [ [[package]] name = "rs48" -version = "1.0.0" +version = "1.1.0" dependencies = [ "clap", - "rand", "rs48_lib", - "termion", ] [[package]] diff --git a/rs48/Cargo.toml b/rs48/Cargo.toml index e9d7b66..2ee2b28 100644 --- a/rs48/Cargo.toml +++ b/rs48/Cargo.toml @@ -1,13 +1,11 @@ [package] name = "rs48" -version = "1.0.0" +version = "1.1.0" edition = "2021" description = "A game of 2048 that plays in the terminal as a TUI with a lot of configurability." license = "GPL-3.0" authors = ["JOLIMAITRE Matthieu "] [dependencies] -rand = "0.8.5" -termion = "1.5.6" -clap = { version = "3.1.8", features = ["derive"] } -rs48_lib = { path = "../rs48_lib" } \ No newline at end of file +clap = { version = "3.1", features = ["derive"] } +rs48_lib = { path = "../rs48_lib" }