feat: version bump for ratatui, bevy_ratatui, bevy_ratatui_render

This commit is contained in:
cxreiff 2024-11-26 16:31:36 -08:00
parent e73f673d1c
commit 231ab8dc2b
2 changed files with 29 additions and 22 deletions

45
Cargo.lock generated
View file

@ -941,9 +941,9 @@ checksum = "61baa1bdc1f4a7ac2c18217570a7cc04e1cd54d38456e91782f0371c79afe0a8"
[[package]]
name = "bevy_ratatui"
version = "0.6.3"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f74a2a22c1c73b105995e2a86e9d1e2c55586c32f4d90614a37c6ec079ba16"
checksum = "57dd76a9156b8b51bbd6d3656d1cdecaddeb12d75cfb29fbc72bd3ba233eee89"
dependencies = [
"bevy",
"bitflags 2.6.0",
@ -955,9 +955,9 @@ dependencies = [
[[package]]
name = "bevy_ratatui_render"
version = "0.5.7"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fccd396da4222f29eea5e4d0ab26b7d7d1c6ecfa8192351bbe41fcf19b14dadf"
checksum = "909c9a4dd1bced596c335bc7d31386ad1d7392003ee76057b175fe2ea8ead469"
dependencies = [
"bevy",
"bevy_ratatui",
@ -1590,7 +1590,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
"unicode-width 0.1.13",
]
[[package]]
@ -1980,12 +1980,6 @@ version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53"
[[package]]
name = "dyn-clone"
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
[[package]]
name = "either"
version = "1.13.0"
@ -2602,6 +2596,12 @@ dependencies = [
"hashbrown",
]
[[package]]
name = "indoc"
version = "2.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
[[package]]
name = "inflections"
version = "1.1.1"
@ -3847,38 +3847,39 @@ checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab"
[[package]]
name = "ratatui"
version = "0.28.1"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fdef7f9be5c0122f890d58bdf4d964349ba6a6161f705907526d891efabba57d"
checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
dependencies = [
"bitflags 2.6.0",
"cassowary",
"compact_str",
"crossterm",
"indoc",
"instability",
"itertools 0.13.0",
"lru",
"paste",
"strum",
"strum_macros",
"unicode-segmentation",
"unicode-truncate",
"unicode-width",
"unicode-width 0.2.0",
]
[[package]]
name = "ratatui-image"
version = "2.0.1"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afb525a8d7c50ca224a238ae3bb3caf5ec357292ff91fcac28748a27b66dcacb"
checksum = "e3a07161c498ddd5066a444a869f27fd97cfc164dbee8c0bdb5ff803b8bb54ce"
dependencies = [
"base64 0.21.7",
"dyn-clone",
"icy_sixel",
"image",
"rand",
"ratatui",
"rustix",
"thiserror",
"windows 0.58.0",
]
[[package]]
@ -4705,7 +4706,7 @@ checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
dependencies = [
"itertools 0.13.0",
"unicode-segmentation",
"unicode-width",
"unicode-width 0.1.13",
]
[[package]]
@ -4714,6 +4715,12 @@ version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
[[package]]
name = "unicode-width"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
[[package]]
name = "unicode-xid"
version = "0.2.4"

View file

@ -14,12 +14,12 @@ keywords = ["bevy", "ratatui", "terminal", "tui", "screensaver"]
[dependencies]
avian2d = "0.1.1"
bevy = "0.14.2"
bevy_ratatui = "0.6.3"
bevy_ratatui_render = "0.5.7"
bevy_ratatui = "0.6.4"
bevy_ratatui_render = "0.6.0"
clap = { version = "4.5.13", features = ["derive"] }
rand = "0.8.5"
rand_chacha = "0.3.1"
ratatui = "0.28.1"
ratatui = "0.29.0"
[lints.clippy]
too_many_arguments = "allow"