-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed CI and added info to examples
- Loading branch information
Showing
5 changed files
with
33 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
[package] | ||
name = "bevy_flycam" | ||
version = "0.6.0" | ||
authors = ["Spencer Burris <[email protected]>"] | ||
categories = ["game-engines", "game-development"] | ||
edition = "2021" | ||
license = "ISC" | ||
description = "Basic first-person fly camera for the Bevy game engine" | ||
edition = "2018" | ||
homepage = "https://github.com/sburris0/bevy_flycam/" | ||
keywords = ["gamedev", "bevy", "3d", "camera"] | ||
license = "ISC" | ||
name = "bevy_flycam" | ||
readme = "README.md" | ||
repository = "https://github.com/sburris0/bevy_flycam/" | ||
readme = "README.md" | ||
keywords = ["gamedev", "bevy", "3d", "camera"] | ||
categories = ["game-engines", "game-development"] | ||
resolver = "2" | ||
version = "0.6.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | ||
bevy = {version = "0.6", default-features = false, features = ["render"]} | ||
|
||
[dev-dependencies] | ||
bevy = {version = "0.6", default-features = false, features = ["render", "bevy_render", "bevy_winit"]} | ||
bevy = {version = "0.6", default-features = false, features = ["bevy_winit"]} | ||
|
||
[target.'cfg(target_os = "linux")'.dev-dependencies] | ||
bevy = {version = "0.6", default-features = false, features = ["x11", "wayland"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters