update
Showing
- .cargo/config.toml 2 additions, 0 deletions.cargo/config.toml
- .gitignore 7 additions, 0 deletions.gitignore
- Cargo.lock 3519 additions, 0 deletionsCargo.lock
- Cargo.toml 3 additions, 4 deletionsCargo.toml
- bevy_cosmic_edit.png 0 additions, 0 deletionsbevy_cosmic_edit.png
- examples/basic_sprite.rs 1 addition, 10 deletionsexamples/basic_sprite.rs
- examples/font_per_widget.rs 1 addition, 1 deletionexamples/font_per_widget.rs
- examples/multiple_sprites.rs 1 addition, 10 deletionsexamples/multiple_sprites.rs
- readme.md 1 addition, 1 deletionreadme.md
- workflows/pr.yml 106 additions, 0 deletionsworkflows/pr.yml
.cargo/config.toml
0 → 100644
.gitignore
0 → 100644
Cargo.lock
0 → 100644
This diff is collapsed.
... | ... | @@ -13,7 +13,7 @@ exclude = ["assets/*"] |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | ||
bevy = { git = "https://github.com/bevyengine/bevy", rev = "1e73312", default-features = false, features = [ | ||
bevy = { version = "0.11", default-features = false, features = [ | ||
"bevy_asset", | ||
"bevy_core_pipeline", | ||
"bevy_render", | ||
... | ... | @@ -25,7 +25,7 @@ bevy = { git = "https://github.com/bevyengine/bevy", rev = "1e73312", default-fe |
"png", | ||
"x11", | ||
] } | ||
cosmic-text = { git = "https://github.com/pop-os/cosmic-text", rev = "79275d1" } | ||
cosmic-text = { version = "0.9" } | ||
image = "0.24.6" | ||
sys-locale = "0.3.0" | ||
... | ... | @@ -33,12 +33,11 @@ sys-locale = "0.3.0" |
arboard = "3.2.0" | ||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
bevy = { git = "https://github.com/bevyengine/bevy", rev = "1e73312", default-features = false, features = [ "webgl2" ] } | ||
bevy = { version = "0.11", default-features = false, features = [ "webgl2" ] } | ||
js-sys = "0.3.61" | ||
[dev-dependencies] | ||
insta = "1.29.0" | ||
bevy_pancam = { git = "https://github.com/StaffEngineer/bevy_pancam", rev = "7154e90" } | ||
[[example]] | ||
name = "basic_button" | ||
... | ... |

| W: | H:
| W: | H:


workflows/pr.yml
0 → 100644