better dependency requirements, bumped version

This commit is contained in:
JOLIMAITRE Matthieu 2022-09-03 02:41:09 +02:00
parent 784a5d55a5
commit 682096f79d
2 changed files with 4 additions and 8 deletions

4
Cargo.lock generated
View file

@ -234,12 +234,10 @@ dependencies = [
[[package]] [[package]]
name = "rs48" name = "rs48"
version = "1.0.0" version = "1.1.0"
dependencies = [ dependencies = [
"clap", "clap",
"rand",
"rs48_lib", "rs48_lib",
"termion",
] ]
[[package]] [[package]]

View file

@ -1,13 +1,11 @@
[package] [package]
name = "rs48" name = "rs48"
version = "1.0.0" version = "1.1.0"
edition = "2021" edition = "2021"
description = "A game of 2048 that plays in the terminal as a TUI with a lot of configurability." description = "A game of 2048 that plays in the terminal as a TUI with a lot of configurability."
license = "GPL-3.0" license = "GPL-3.0"
authors = ["JOLIMAITRE Matthieu <matthieu@imagevo.fr>"] authors = ["JOLIMAITRE Matthieu <matthieu@imagevo.fr>"]
[dependencies] [dependencies]
rand = "0.8.5" clap = { version = "3.1", features = ["derive"] }
termion = "1.5.6"
clap = { version = "3.1.8", features = ["derive"] }
rs48_lib = { path = "../rs48_lib" } rs48_lib = { path = "../rs48_lib" }