Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,565 changes: 825 additions & 740 deletions Cargo.lock

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions code/examples/ratatui-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,34 +19,34 @@ termwiz = ["ratatui/termwiz"]
unstable-widget-ref = ["ratatui/unstable-widget-ref"]

[dependencies]
crossterm = { version = "0.28.1", features = ["event-stream"] }
ratatui = { version = "0.29.0", features = ["widget-calendar"] }
crossterm = { version = "0.29.0", features = ["event-stream"] }
ratatui = { version = "0.30.1", features = ["widget-calendar"] }

[dev-dependencies]
anyhow = "1.0.97"
argh = "0.1.13"
anyhow = "1.0.102"
argh = "0.1.19"
better-panic = "0.3.0"
color-eyre = "0.6.2"
criterion = { version = "0.5.1", features = ["html_reports"] }
criterion = { version = "0.8.2", features = ["html_reports"] }
derive_builder = "0.20.2"
fakeit = "1.1"
fakeit = "1.4"
font8x8 = "0.3.1"
futures = "0.3.31"
futures = "0.3.32"
indoc = "2"
octocrab = "0.44.0"
octocrab = "0.47.1"
palette = "0.7.3"
pretty_assertions = "1.4.1"
rand = "0.9.3"
rand_chacha = "0.9.0"
rstest = "0.25.0"
serde_json = "1.0.140"
rand = "0.10.1"
rand_chacha = "0.10.0"
rstest = "0.26.1"
serde_json = "1.0.150"
itertools = "0.14"
strum = { version = "0.27.1", features = ["derive"] }
strum = { version = "0.28.0", features = ["derive"] }
time = { version = "0.3.47", features = ["local-offset"] }
tokio = { version = "1.44.1", features = ["macros", "rt", "rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
tracing-appender = "0.2.3"
tokio = { version = "1.46.1", features = ["macros", "rt", "rt-multi-thread"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
tracing-appender = "0.2.5"
unicode-width = "0.2"

[[example]]
Expand Down
2 changes: 1 addition & 1 deletion code/recipes/how-to-color_eyre/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ publish.workspace = true
# ANCHOR: dependencies
[dependencies]
color-eyre = { version = "0.6.3" }
ratatui = "0.29.0"
ratatui = "0.30.1"
# ANCHOR_END: dependencies
4 changes: 2 additions & 2 deletions code/recipes/how-to-debug-widget-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ publish.workspace = true

[dependencies]
color-eyre = "0.6.5"
crossterm = "0.28.1"
ratatui = "0.29.0"
crossterm = "0.29.0"
ratatui = "0.30.1"
4 changes: 2 additions & 2 deletions code/recipes/how-to-overwrite-regions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ publish.workspace = true

[dependencies]
color-eyre = "0.6.3"
derive_setters = "0.1.6"
derive_setters = "0.1.9"
lipsum = "0.9.1"
ratatui = "0.29.0"
ratatui = "0.30.1"
2 changes: 1 addition & 1 deletion code/recipes/how-to-panic-hooks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ publish.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ratatui = "0.29.0"
ratatui = "0.30.1"

[[bin]]
name = "crossterm"
Expand Down
2 changes: 1 addition & 1 deletion code/recipes/how-to-spawn-vim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ publish.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ratatui = "0.29.0"
ratatui = "0.30.1"
4 changes: 2 additions & 2 deletions code/showcase/widget-showcase/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ publish.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.5.34", features = ["derive"] }
clap = { version = "4.5.60", features = ["derive"] }
color-eyre = "0.6.3"
ratatui = { version = "0.29.0", features = ["all-widgets"] }
ratatui = { version = "0.30.1", features = ["all-widgets"] }
time = "0.3.47"
lipsum = "0.9.1"
textwrap = "0.16.2"
2 changes: 1 addition & 1 deletion code/tutorials/counter-app-error-handling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ publish.workspace = true
# ANCHOR: dependencies
[dependencies]
color-eyre = "0.6.3"
ratatui = "0.29.0"
ratatui = "0.30.1"
# ANCHOR_END: dependencies
2 changes: 1 addition & 1 deletion code/tutorials/json-editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ publish.workspace = true
[dependencies]
ratatui = "0.30.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_json = "1.0.150"
2 changes: 1 addition & 1 deletion code/tutorials/ratatui-counter-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ publish.workspace = true

[dependencies]
color-eyre = "0.6.3"
ratatui = "0.29.0"
ratatui = "0.30.1"
28 changes: 14 additions & 14 deletions code/tutorials/ratatui-counter-async-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish.workspace = true

[dependencies]
better-panic = "0.3.0"
clap = { version = "4.5.34", features = [
clap = { version = "4.5.60", features = [
"derive",
"cargo",
"wrap_help",
Expand All @@ -19,23 +19,23 @@ clap = { version = "4.5.34", features = [
"unstable-styles",
] }
color-eyre = "0.6.3"
config = "0.15.11"
crossterm = { version = "0.28.1", features = ["serde", "event-stream"] }
config = "0.15.23"
crossterm = { version = "0.29.0", features = ["serde", "event-stream"] }
derive_deref = "1.1.1"
directories = "6.0.0"
futures = "0.3.31"
human-panic = "2.0.2"
json5 = "0.4.1"
futures = "0.3.32"
human-panic = "2.0.8"
json5 = "1.3.1"
libc = "0.2.171"
log = "0.4.27"
log = "0.4.32"
pretty_assertions = "1.4.1"
ratatui = { version = "0.29.0", features = ["serde", "macros"] }
ratatui = { version = "0.30.1", features = ["serde", "macros"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
signal-hook = "0.3.17"
serde_json = "1.0.150"
signal-hook = "0.4.4"
strip-ansi-escapes = "0.2.1"
tokio = { version = "1.44.1", features = ["full"] }
tokio-util = "0.7.14"
tracing = "0.1.41"
tokio = { version = "1.46.1", features = ["full"] }
tokio-util = "0.7.18"
tracing = "0.1.44"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "serde"] }
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "serde"] }
18 changes: 9 additions & 9 deletions code/tutorials/ratatui-stopwatch-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ publish.workspace = true

[dependencies]
color-eyre = "0.6.3"
crossterm = { version = "0.28.1", features = ["event-stream"] }
crossterm = { version = "0.29.0", features = ["event-stream"] }
directories = "6.0.0"
futures = "0.3.31"
human-panic = "2.0.2"
futures = "0.3.32"
human-panic = "2.0.8"
itertools = "0.14.0"
libc = "0.2.171"
log = "0.4.27"
ratatui = "0.29.0"
log = "0.4.32"
ratatui = "0.30.1"
strip-ansi-escapes = "0.2.1"
strum = { version = "0.27.1", features = ["derive"] }
tokio = { version = "1.44.1", features = ["full"] }
tokio-util = "0.7.14"
tui-big-text = "0.7.1"
strum = { version = "0.28.0", features = ["derive"] }
tokio = { version = "1.46.1", features = ["full"] }
tokio-util = "0.7.18"
tui-big-text = "0.8.4"
Loading