Skip to content

Commit

Permalink
Simplified Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackPhlox committed Jun 12, 2021
1 parent c0d0ff7 commit b1c15aa
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

20 changes: 14 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_config_cam"
version = "0.1.1"
version = "0.1.2"
authors = ["Black Phlox <bphlox@gmail.com>"]
license = "MIT OR ISC"
edition = "2018"
Expand All @@ -12,6 +12,7 @@ keywords = ["gamedev", "bevy", "camera", "fps", "3d", ]
categories = ["game-development", "game-engines", ]
exclude = [
"assets/*",
"credits/*",
".github/*",
]

Expand All @@ -24,11 +25,18 @@ name = "bevy_config_cam"
rand = "0.8.0"
strum = "0.21.0"
strum_macros = "0.21.1"
bevy = { version = "0.5", default-features = false, features = ["render"] }

[dev-dependencies]
bevy = { version = "0.5", default-features = false, features = ["render", "bevy_winit", "bevy_wgpu", "bevy_gltf"] }
[dependencies.bevy]
version = "0.5"
features = ["render"]
default-features = false

[target.'cfg(target_os = "linux")'.dev-dependencies]
bevy = { version = "0.5", default-features = false, features = [ "x11", "wayland" ] }
[dev-dependencies.bevy]
version = "0.5"
features = ["bevy_winit", "bevy_wgpu", "bevy_gltf"]
default-features = false

[target.'cfg(target_os = "linux")'.dev-dependencies.bevy]
version = "0.5"
features = ["x11", "wayland"]
default-features = false

0 comments on commit b1c15aa

Please sign in to comment.