diff --git a/Cargo.toml b/Cargo.toml index 1963f7816c..522c50561e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,10 @@ name = "bevy" version = "0.1.3" edition = "2018" -authors = ["Bevy Contributors ", "Carter Anderson "] +authors = [ + "Bevy Contributors ", + "Carter Anderson ", +] 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" diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index c7c191caf1..0db9fcb26f 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -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" diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index dcb30876eb..3ead8e74c1 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -13,4 +13,4 @@ license = "MIT" keywords = ["bevy"] [dependencies] -ahash = "0.4.4" +ahash = "0.4.5"