Skip to content
Merged
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
151 changes: 91 additions & 60 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ web-sys = { version = "0.3.81", features = [
'Window',
] }
compact_str = "0.9.0"
ratatui = { version = "0.29", default-features = false, features = ["all-widgets"] }
ratatui = { version = "0.30", default-features = false, features = ["all-widgets", "layout-cache"] }
console_error_panic_hook = "0.1.7"
thiserror = "2.0.12"
bitvec = { version = "1.0.1", default-features = false, features = ["alloc", "std"] }
Expand Down
38 changes: 38 additions & 0 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[workspace]
resolver = "2"
members = [
"animations",
"canvas_stress_test",
"canvas_waves",
"clipboard",
"colors_rgb",
"demo",
"demo2",
"minimal",
"pong",
"shared",
"tauri",
"text_area",
"user_input",
"website",
"world_map",
]
exclude = [
"tauri/src-tauri",
]

[workspace.dependencies]
ratzilla = { path = "../" }
examples-shared = { path = "shared" }
console_error_panic_hook = "0.1.7"
tachyonfx = { version = "0.22.0", default-features = false, features = ["web-time"] }
web-time = "1.1.0"
palette = "0.7.6"
rand = { version = "0.9.2", default-features = false }
wasm-bindgen = "0.2.104"
wasm-bindgen-futures = "0.4.54"
web-sys = "0.3.81"

[patch.crates-io]
# remove this after ratatui gets updated upstream
tui-textarea = { git = "https://github.com/0xferrous/tui-textarea", rev = "b6bf812d1f5edab4f311f56d405a47341e9423cf" }
Comment on lines +36 to +38
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think tui-textarea is not getting any updates, it might make sense to fork it in ratatui org and apply the patch and use that url here instead of my personal fork @orhun

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes... we should definitely do that

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool will update when it is forked on ratatui org, lmk

8 changes: 4 additions & 4 deletions examples/animations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies]
ratzilla = { path = "../../" }
tachyonfx = { version = "0.19.0", default-features = false, features = ["web-time"] }
console_error_panic_hook = "0.1.7"
examples-shared = { path = "../shared" }
ratzilla.workspace = true
tachyonfx.workspace = true
console_error_panic_hook.workspace = true
examples-shared.workspace = true
8 changes: 4 additions & 4 deletions examples/canvas_stress_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false
description = "A stress test for the foreground rendering of the CanvasBackend"

[dependencies]
ratzilla = { path = "../../" }
console_error_panic_hook = "0.1.7"
web-time = "1.1.0"
ratzilla.workspace = true
console_error_panic_hook.workspace = true
web-time.workspace = true
compact_str = "0.9.0"
examples-shared = { path = "../shared" }
examples-shared.workspace = true
10 changes: 5 additions & 5 deletions examples/canvas_waves/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[dependencies]
ratzilla = { path = "../../" }
console_error_panic_hook = "0.1.7"
tachyonfx = { version = "0.19.0", default-features = false, features = ["web-time"] }
web-time = "1.1.0"
examples-shared = { path = "../shared" }
ratzilla.workspace = true
console_error_panic_hook.workspace = true
tachyonfx.workspace = true
web-time.workspace = true
examples-shared.workspace = true
Loading
Loading