Skip to content

Commit

Permalink
use bevy 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobhellermann committed Apr 7, 2021
1 parent 606989d commit 7b94a0d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ manage_clipboard = ["clipboard", "thread_local"]
open_url = ["webbrowser"]

[dependencies]
bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", default-features = false, features = ["render", "bevy_winit"] }
bevy = { version = "0.5", default-features = false, features = ["render", "bevy_winit"] }
egui = "0.10.0"
webbrowser = { version = "0.5.5", optional = true }
winit = { version = "0.24.0", features = ["x11"], default-features = false }
Expand All @@ -33,4 +33,4 @@ thread_local = { version = "1.1.0", optional = true }
version-sync = "0.9.2"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", default-features = false, features = ["bevy_wgpu", "x11", "png"] }
bevy = { version = "0.5", default-features = false, features = ["bevy_wgpu", "x11", "png"] }
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Here's a minimal usage example:
```toml
# Cargo.toml
[dependencies]
bevy = "0.4"
bevy = "0.5"
bevy_egui = "0.3"
```

Expand Down Expand Up @@ -64,3 +64,10 @@ cargo run --example ui

- [`jakobhellermann/bevy-inspector-egui`](https://github.com/jakobhellermann/bevy-inspector-egui)
- [`mvlabat/bevy_megaui`](https://github.com/mvlabat/bevy_megaui)

## Bevy support table

|bevy|bevy-inspector-egui|
|---|---|
|0.5|0.4|
|0.4|0.1-0.3|

0 comments on commit 7b94a0d

Please sign in to comment.