Merge pull request #118 from StaffEngineer/bevy_0.12
Bevy 0.12, cosmic-text 0.10
No related branches found
No related tags found
Showing
- Cargo.lock 348 additions, 179 deletionsCargo.lock
- Cargo.toml 4 additions, 4 deletionsCargo.toml
- examples/bevy_api_testing.rs 3 additions, 3 deletionsexamples/bevy_api_testing.rs
- examples/login.rs 1 addition, 1 deletionexamples/login.rs
- readme.md 4 additions, 3 deletionsreadme.md
- src/input.rs 3 additions, 4 deletionssrc/input.rs
- src/lib.rs 0 additions, 1 deletionsrc/lib.rs
- src/render.rs 10 additions, 17 deletionssrc/render.rs
This diff is collapsed.
[package] | ||
name = "bevy_cosmic_edit" | ||
version = "0.14.0" | ||
version = "0.15.0" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
description = "Bevy cosmic-text multiline text input" | ||
... | ... | @@ -23,7 +23,7 @@ opt-level = 3 |
opt-level = 'z' | ||
[dependencies] | ||
bevy = { version = "0.11", default-features = false, features = [ | ||
bevy = { version = "0.12", default-features = false, features = [ | ||
"bevy_asset", | ||
"bevy_core_pipeline", | ||
"bevy_render", | ||
... | ... | @@ -35,7 +35,7 @@ bevy = { version = "0.11", default-features = false, features = [ |
"png", | ||
"x11", | ||
] } | ||
cosmic-text = { version = "0.9" } | ||
cosmic-text = { version = "0.10" } | ||
# TODO: move crossbeam to wasm32, once input.rs has separate wasm copy/paste fn | ||
crossbeam-channel = "0.5.8" | ||
image = "0.24.6" | ||
... | ... | @@ -46,7 +46,7 @@ arboard = "3.2.0" |
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
js-sys = "0.3.61" | ||
wasm-bindgen = "0.2.87" | ||
wasm-bindgen = "0.2.88" | ||
wasm-bindgen-futures = "0.4.37" | ||
web-sys = { version = "0.3.64", features = ["Clipboard", "Navigator", "Window"] } | ||
... | ... |
Please register or sign in to comment