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
25
Cargo.toml
25
Cargo.toml
|
@ -2,7 +2,10 @@
|
||||||
name = "bevy"
|
name = "bevy"
|
||||||
version = "0.1.3"
|
version = "0.1.3"
|
||||||
edition = "2018"
|
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"
|
description = "A refreshingly simple data-driven game engine and app framework"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
repository = "https://github.com/bevyengine/bevy"
|
repository = "https://github.com/bevyengine/bevy"
|
||||||
|
@ -14,8 +17,15 @@ exclude = ["assets/**/*", "tools/**/*", ".github/**/*", "crates/**/*"]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [
|
default = [
|
||||||
"bevy_audio", "bevy_gltf", "bevy_wgpu", "bevy_winit",
|
"bevy_audio",
|
||||||
"dynamic_plugins", "png", "hdr", "mp3", "x11"
|
"bevy_gltf",
|
||||||
|
"bevy_wgpu",
|
||||||
|
"bevy_winit",
|
||||||
|
"dynamic_plugins",
|
||||||
|
"png",
|
||||||
|
"hdr",
|
||||||
|
"mp3",
|
||||||
|
"x11",
|
||||||
]
|
]
|
||||||
profiler = ["bevy_ecs/profiler", "bevy_diagnostic/profiler"]
|
profiler = ["bevy_ecs/profiler", "bevy_diagnostic/profiler"]
|
||||||
wgpu_trace = ["bevy_wgpu/trace"]
|
wgpu_trace = ["bevy_wgpu/trace"]
|
||||||
|
@ -42,10 +52,7 @@ wayland = ["bevy_winit/wayland"]
|
||||||
x11 = ["bevy_winit/x11"]
|
x11 = ["bevy_winit/x11"]
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = ["crates/*", "crates/bevy_ecs/hecs"]
|
||||||
"crates/*",
|
|
||||||
"crates/bevy_ecs/hecs",
|
|
||||||
]
|
|
||||||
exclude = ["benches"]
|
exclude = ["benches"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
@ -77,8 +84,8 @@ bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.1" }
|
||||||
bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.1" }
|
bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.1" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand = "0.7.2"
|
rand = "0.7.3"
|
||||||
serde = { version = "1", features = ["derive"]}
|
serde = { version = "1", features = ["derive"] }
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "hello_world"
|
name = "hello_world"
|
||||||
|
|
|
@ -13,6 +13,6 @@ edition = "2018"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures-lite = "1.4.0"
|
futures-lite = "1.4.0"
|
||||||
event-listener = "2.4.0"
|
event-listener = "2.4.0"
|
||||||
async-executor = "1.1.0"
|
async-executor = "1.1.1"
|
||||||
async-channel = "1.4.2"
|
async-channel = "1.4.2"
|
||||||
num_cpus = "1"
|
num_cpus = "1"
|
||||||
|
|
|
@ -13,4 +13,4 @@ license = "MIT"
|
||||||
keywords = ["bevy"]
|
keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ahash = "0.4.4"
|
ahash = "0.4.5"
|
||||||
|
|
Loading…
Reference in a new issue