This commit is contained in:
Conrad Ludgate 2022-04-26 12:38:26 +01:00 committed by GitHub
parent 8ac6571bc6
commit 43d299fde3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -2482,9 +2482,9 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]] [[package]]
name = "tui" name = "tui"
version = "0.16.0" version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39c8ce4e27049eed97cfa363a5048b09d995e209994634a0efc26a14ab6c0c23" checksum = "96fe69244ec2af261bced1d9046a6fee6c8c2a6b0228e59e5ba39bc8ba4ed729"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"cassowary", "cassowary",

View file

@ -50,7 +50,7 @@ directories = "4"
indicatif = "0.16.2" indicatif = "0.16.2"
serde = { version = "1.0.126", features = ["derive"] } serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.75" serde_json = "1.0.75"
tui = "0.16" tui = { version = "0.18", default-features = false, features = ["termion"] }
termion = "1.5" termion = "1.5"
unicode-width = "0.1" unicode-width = "0.1"
itertools = "0.10.3" itertools = "0.10.3"