Skip to content

Commit

Permalink
use iced fork with disabled text_input widget cache
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Mar 22, 2024
1 parent e003361 commit b8ef0fb
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 32 deletions.
45 changes: 18 additions & 27 deletions Cargo.lock

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

16 changes: 11 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,17 @@ bevy_render = "0.13"
bevy_utils = "0.13"
bevy_window = "0.13"

iced_core = "0.12"
iced_runtime = "0.12"
iced_wgpu = "0.12"
iced_widget = "0.12"
iced_renderer = { version = "0.12", features = ["wgpu"] }
# iced_core = "0.12"
# iced_runtime = "0.12"
# iced_wgpu = "0.12"
# iced_widget = "0.12"
# iced_renderer = { version = "0.12", features = ["wgpu"] }
# NOTE: temp fork for https://github.com/iced-rs/iced/issues/2318
iced_core = { git = "https://github.com/tzemanovic/iced.git", rev = "ac826cf5f72a0598bbe986fd6da9f970ef91ab98" }
iced_runtime = { git = "https://github.com/tzemanovic/iced.git", rev = "ac826cf5f72a0598bbe986fd6da9f970ef91ab98" }
iced_wgpu = { git = "https://github.com/tzemanovic/iced.git", rev = "ac826cf5f72a0598bbe986fd6da9f970ef91ab98" }
iced_widget = { git = "https://github.com/tzemanovic/iced.git", rev = "ac826cf5f72a0598bbe986fd6da9f970ef91ab98" }
iced_renderer = { git = "https://github.com/tzemanovic/iced.git", rev = "ac826cf5f72a0598bbe986fd6da9f970ef91ab98" , features = ["wgpu"] }

[dev-dependencies]
bevy = "0.13"
Expand Down

0 comments on commit b8ef0fb

Please sign in to comment.