Bump tui from 0.12.0 to 0.13.0

Bumps [tui](https://github.com/fdehau/tui-rs) from 0.12.0 to 0.13.0.
- [Release notes](https://github.com/fdehau/tui-rs/releases)
- [Changelog](https://github.com/fdehau/tui-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/fdehau/tui-rs/compare/v0.12.0...v0.13.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This commit is contained in:
dependabot-preview[bot] 2020-12-08 00:02:58 +00:00 committed by Stephan Dilly
parent 6966882032
commit fe48c1d66b
2 changed files with 5 additions and 21 deletions

24
Cargo.lock generated
View File

@ -303,22 +303,6 @@ dependencies = [
"lazy_static",
]
[[package]]
name = "crossterm"
version = "0.17.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f4919d60f26ae233e14233cc39746c8c8bb8cd7b05840ace83604917b51b6c7"
dependencies = [
"bitflags",
"crossterm_winapi",
"lazy_static",
"libc",
"mio",
"parking_lot 0.10.2",
"signal-hook",
"winapi",
]
[[package]]
name = "crossterm"
version = "0.18.2"
@ -457,7 +441,7 @@ dependencies = [
"chrono",
"clap",
"crossbeam-channel",
"crossterm 0.18.2",
"crossterm",
"dirs-next",
"itertools",
"log",
@ -1286,13 +1270,13 @@ checksum = "53953d2d3a5ad81d9f844a32f14ebb121f50b650cd59d0ee2a07cf13c617efed"
[[package]]
name = "tui"
version = "0.12.0"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2eaeee894a1e9b90f80aa466fe59154fdb471980b5e104d8836fcea309ae17e"
checksum = "5d4e6c82bb967df89f20b875fa8835fab5d5622c6a5efa574a1f0b6d0aa6e8f6"
dependencies = [
"bitflags",
"cassowary",
"crossterm 0.17.7",
"crossterm",
"serde",
"unicode-segmentation",
"unicode-width",

View File

@ -23,7 +23,7 @@ scopetime = { path = "./scopetime", version = "0.1" }
asyncgit = { path = "./asyncgit", version = "0.10" }
crossterm = { version = "0.18", features = [ "serde" ] }
clap = { version = "2.33", default-features = false }
tui = { version = "0.12", default-features = false, features = ['crossterm', 'serde'] }
tui = { version = "0.13", default-features = false, features = ['crossterm', 'serde'] }
bytesize = { version = "1.0.1", default-features = false}
itertools = "0.9"
rayon-core = "1.9"