forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies (bevyengine#470)
- Loading branch information
1 parent
9d0abeb
commit a9ce7f4
Showing
32 changed files
with
172 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_app" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides core App functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -22,4 +25,4 @@ bevy_math = { path = "../bevy_math", version = "0.1" } | |
# other | ||
libloading = { version = "0.6", optional = true } | ||
log = { version = "0.4", features = ["release_max_level_info"] } | ||
serde = { version = "1.0", features = ["derive"]} | ||
serde = { version = "1.0", features = ["derive"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_asset" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides asset functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -24,9 +27,9 @@ bevy_utils = { path = "../bevy_utils", version = "0.1" } | |
# other | ||
uuid = { version = "0.8", features = ["v4", "serde"] } | ||
serde = { version = "1", features = ["derive"] } | ||
crossbeam-channel = "0.4.2" | ||
crossbeam-channel = "0.4.4" | ||
anyhow = "1.0" | ||
thiserror = "1.0" | ||
log = { version = "0.4", features = ["release_max_level_info"] } | ||
notify = { version = "5.0.0-pre.2", optional = true } | ||
parking_lot = "0.10.2" | ||
parking_lot = "0.11.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_audio" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides audio functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -11,14 +14,14 @@ keywords = ["bevy"] | |
|
||
[dependencies] | ||
# bevy | ||
bevy_app = {path = "../bevy_app", version = "0.1"} | ||
bevy_asset = {path = "../bevy_asset", version = "0.1"} | ||
bevy_ecs = {path = "../bevy_ecs", version = "0.1"} | ||
bevy_app = { path = "../bevy_app", version = "0.1" } | ||
bevy_asset = { path = "../bevy_asset", version = "0.1" } | ||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" } | ||
|
||
# other | ||
anyhow = "1.0" | ||
rodio = {version = "0.11", default-features = false} | ||
parking_lot = "0.10.2" | ||
rodio = { version = "0.11", default-features = false } | ||
parking_lot = "0.11.0" | ||
|
||
[features] | ||
mp3 = ["rodio/mp3"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,21 @@ | |
name = "bevy_core" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides core functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
license = "MIT" | ||
keywords = ["bevy"] | ||
|
||
[features] | ||
dynamic_plugins = ["bevy_app/dynamic_plugins", "bevy_type_registry/dynamic_plugins"] | ||
dynamic_plugins = [ | ||
"bevy_app/dynamic_plugins", | ||
"bevy_type_registry/dynamic_plugins", | ||
] | ||
|
||
[dependencies] | ||
bevy_app = { path = "../bevy_app", version = "0.1" } | ||
|
@@ -19,4 +25,4 @@ bevy_ecs = { path = "../bevy_ecs", version = "0.1" } | |
bevy_property = { path = "../bevy_property", version = "0.1" } | ||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } | ||
bevy_math = { path = "../bevy_math", version = "0.1" } | ||
bevy_utils = { path = "../bevy_utils", version = "0.1" } | ||
bevy_utils = { path = "../bevy_utils", version = "0.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_derive" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides derive implementations for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -13,8 +16,8 @@ keywords = ["bevy"] | |
proc-macro = true | ||
|
||
[dependencies] | ||
Inflector = {version = "0.11.4", default-features = false} | ||
proc-macro-crate = "0.1.4" | ||
Inflector = { version = "0.11.4", default-features = false } | ||
proc-macro-crate = "0.1.5" | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
syn = "1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_diagnostic" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides diagnostic functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -21,4 +24,4 @@ bevy_utils = { path = "../bevy_utils", version = "0.1" } | |
|
||
# other | ||
uuid = { version = "0.8", features = ["v4", "serde"] } | ||
parking_lot = "0.10" | ||
parking_lot = "0.11.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_ecs" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Bevy Engine's custom entity component system" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -17,8 +20,8 @@ profiler = [] | |
bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.1" } | ||
bevy_tasks = { path = "../bevy_tasks", version = "0.1" } | ||
bevy_utils = { path = "../bevy_utils", version = "0.1" } | ||
rand = "0.7.2" | ||
fixedbitset = "0.3.0" | ||
downcast-rs = "1.1.1" | ||
parking_lot = "0.10" | ||
rand = "0.7.3" | ||
fixedbitset = "0.3.1" | ||
downcast-rs = "1.2.0" | ||
parking_lot = "0.11.0" | ||
log = { version = "0.4", features = ["release_max_level_info"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_gltf" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Bevy Engine GLTF loading" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_input" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides input functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,15 @@ | |
name = "bevy_math" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides math functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
license = "MIT" | ||
keywords = ["bevy"] | ||
|
||
[dependencies] | ||
glam = { version = "0.9.3", features = ["serde"] } | ||
glam = { version = "0.9.4", features = ["serde"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_pbr" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Adds PBR rendering to Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -20,4 +23,4 @@ bevy_property = { path = "../bevy_property", version = "0.1" } | |
bevy_render = { path = "../bevy_render", version = "0.1" } | ||
bevy_transform = { path = "../bevy_transform", version = "0.1" } | ||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } | ||
bevy_window = { path = "../bevy_window", version = "0.1" } | ||
bevy_window = { path = "../bevy_window", version = "0.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_property" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Dynamically interact with struct fields using their names" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -11,13 +14,13 @@ keywords = ["bevy"] | |
|
||
[dependencies] | ||
# bevy | ||
bevy_ecs = {path = "../bevy_ecs", version = "0.1"} | ||
bevy_math = {path = "../bevy_math", version = "0.1"} | ||
bevy_property_derive = {path = "bevy_property_derive", version = "0.1"} | ||
bevy_utils = {path = "../bevy_utils", version = "0.1"} | ||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" } | ||
bevy_math = { path = "../bevy_math", version = "0.1" } | ||
bevy_property_derive = { path = "bevy_property_derive", version = "0.1" } | ||
bevy_utils = { path = "../bevy_utils", version = "0.1" } | ||
|
||
# other | ||
erased-serde = "0.3" | ||
ron = "0.6.2" | ||
serde = "1" | ||
smallvec = {version = "1.4", features = ["serde"]} | ||
smallvec = { version = "1.4", features = ["serde"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_property_derive" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Derive implementations for bevy_property" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -16,4 +19,4 @@ proc-macro = true | |
syn = "1.0" | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
proc-macro-crate = "0.1.4" | ||
proc-macro-crate = "0.1.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_render" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides rendering functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -31,16 +34,16 @@ image = { version = "0.23", default-features = false } | |
log = { version = "0.4", features = ["release_max_level_info"] } | ||
uuid = { version = "0.8", features = ["v4", "serde"] } | ||
serde = { version = "1", features = ["derive"] } | ||
bitflags = "1.0" | ||
smallvec = "1.4.0" | ||
bitflags = "1.2.1" | ||
smallvec = "1.4.2" | ||
# TODO: replace once_cell with std equivalent if/when this lands: https://github.com/rust-lang/rfcs/pull/2788 | ||
once_cell = "1.4.0" | ||
downcast-rs = "1.1.1" | ||
once_cell = "1.4.1" | ||
downcast-rs = "1.2.0" | ||
thiserror = "1.0" | ||
anyhow = "1.0" | ||
hex = "0.4.2" | ||
hexasphere = "1.0.0" | ||
parking_lot = "0.10" | ||
parking_lot = "0.11.0" | ||
|
||
[target.'cfg(not(target_os = "ios"))'.dependencies] | ||
bevy-glsl-to-spirv = "0.1.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_scene" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides scene functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -19,9 +22,9 @@ bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } | |
bevy_utils = { path = "../bevy_utils", version = "0.1" } | ||
|
||
# other | ||
serde = { version = "1.0", features = ["derive"]} | ||
serde = { version = "1.0", features = ["derive"] } | ||
ron = "0.6.2" | ||
uuid = { version = "0.8", features = ["v4", "serde"] } | ||
anyhow = "1.0" | ||
thiserror = "1.0" | ||
parking_lot = "0.10.2" | ||
parking_lot = "0.11.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "bevy_sprite" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Carter Anderson <[email protected]>", | ||
] | ||
description = "Provides sprite functionality for Bevy Engine" | ||
homepage = "https://bevyengine.org" | ||
repository = "https://github.com/bevyengine/bevy" | ||
|
@@ -24,4 +27,4 @@ bevy_utils = { path = "../bevy_utils", version = "0.1" } | |
# other | ||
rectangle-pack = "0.1" | ||
thiserror = "1.0" | ||
guillotiere = "0.5.2" | ||
guillotiere = "0.6.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,15 +4,15 @@ version = "0.1.3" | |
authors = [ | ||
"Bevy Contributors <[email protected]>", | ||
"Lachlan Sneff <[email protected]>", | ||
"Philip Degarmo <[email protected]>" | ||
"Philip Degarmo <[email protected]>", | ||
] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
futures-lite = "1.0" | ||
futures-lite = "1.4.0" | ||
event-listener = "2.4.0" | ||
async-executor = "0.2" | ||
async-executor = "1.0.0" | ||
async-channel = "1.4.2" | ||
num_cpus = "1" | ||
num_cpus = "1" |
Oops, something went wrong.