update dependencies (#493)

This commit is contained in:
Smite Rust 2020-09-15 09:12:52 +08:00 committed by GitHub
parent afe86b4b3a
commit a5259ab45f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 11 deletions

View file

@ -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,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" }
[dev-dependencies]
rand = "0.7.2"
serde = { version = "1", features = ["derive"]}
rand = "0.7.3"
serde = { version = "1", features = ["derive"] }
[[example]]
name = "hello_world"

View file

@ -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"

View file

@ -13,4 +13,4 @@ license = "MIT"
keywords = ["bevy"]
[dependencies]
ahash = "0.4.4"
ahash = "0.4.5"