mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
update dependencies (#493)
This commit is contained in:
parent
afe86b4b3a
commit
a5259ab45f
3 changed files with 18 additions and 11 deletions
23
Cargo.toml
23
Cargo.toml
|
@ -2,7 +2,10 @@
|
|||
name = "bevy"
|
||||
version = "0.1.3"
|
||||
edition = "2018"
|
||||
authors = ["Bevy Contributors <bevyengine@gmail.com>", "Carter Anderson <mcanders1@gmail.com>"]
|
||||
authors = [
|
||||
"Bevy Contributors <bevyengine@gmail.com>",
|
||||
"Carter Anderson <mcanders1@gmail.com>",
|
||||
]
|
||||
description = "A refreshingly simple data-driven game engine and app framework"
|
||||
homepage = "https://bevyengine.org"
|
||||
repository = "https://github.com/bevyengine/bevy"
|
||||
|
@ -14,8 +17,15 @@ exclude = ["assets/**/*", "tools/**/*", ".github/**/*", "crates/**/*"]
|
|||
|
||||
[features]
|
||||
default = [
|
||||
"bevy_audio", "bevy_gltf", "bevy_wgpu", "bevy_winit",
|
||||
"dynamic_plugins", "png", "hdr", "mp3", "x11"
|
||||
"bevy_audio",
|
||||
"bevy_gltf",
|
||||
"bevy_wgpu",
|
||||
"bevy_winit",
|
||||
"dynamic_plugins",
|
||||
"png",
|
||||
"hdr",
|
||||
"mp3",
|
||||
"x11",
|
||||
]
|
||||
profiler = ["bevy_ecs/profiler", "bevy_diagnostic/profiler"]
|
||||
wgpu_trace = ["bevy_wgpu/trace"]
|
||||
|
@ -42,10 +52,7 @@ wayland = ["bevy_winit/wayland"]
|
|||
x11 = ["bevy_winit/x11"]
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"crates/*",
|
||||
"crates/bevy_ecs/hecs",
|
||||
]
|
||||
members = ["crates/*", "crates/bevy_ecs/hecs"]
|
||||
exclude = ["benches"]
|
||||
|
||||
[dependencies]
|
||||
|
@ -77,7 +84,7 @@ bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.1" }
|
|||
bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.1" }
|
||||
|
||||
[dev-dependencies]
|
||||
rand = "0.7.2"
|
||||
rand = "0.7.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
||||
[[example]]
|
||||
|
|
|
@ -13,6 +13,6 @@ edition = "2018"
|
|||
[dependencies]
|
||||
futures-lite = "1.4.0"
|
||||
event-listener = "2.4.0"
|
||||
async-executor = "1.1.0"
|
||||
async-executor = "1.1.1"
|
||||
async-channel = "1.4.2"
|
||||
num_cpus = "1"
|
||||
|
|
|
@ -13,4 +13,4 @@ license = "MIT"
|
|||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
ahash = "0.4.4"
|
||||
ahash = "0.4.5"
|
||||
|
|
Loading…
Reference in a new issue