Skip to content

Commit

Permalink
update dependencies (bevyengine#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmiteWindows authored Sep 10, 2020
1 parent 9d0abeb commit a9ce7f4
Show file tree
Hide file tree
Showing 32 changed files with 172 additions and 93 deletions.
2 changes: 1 addition & 1 deletion benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ bevy = { path = "../" }
[[bench]]
name = "iter"
path = "benches/bevy_tasks/iter.rs"
harness = false
harness = false
7 changes: 5 additions & 2 deletions crates/bevy_app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"] }
9 changes: 6 additions & 3 deletions crates/bevy_asset/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
15 changes: 9 additions & 6 deletions crates/bevy_audio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"]
Expand Down
12 changes: 9 additions & 3 deletions crates/bevy_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand All @@ -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" }
9 changes: 6 additions & 3 deletions crates/bevy_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
7 changes: 5 additions & 2 deletions crates/bevy_diagnostic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
13 changes: 8 additions & 5 deletions crates/bevy_ecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"] }
6 changes: 3 additions & 3 deletions crates/bevy_ecs/hecs/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ proc-macro = true

[dependencies]
syn = "1.0"
quote = "1.0.3"
proc-macro2 = "1.0.1"
proc-macro-crate = "0.1.4"
quote = "1.0"
proc-macro2 = "1.0"
proc-macro-crate = "0.1.5"
5 changes: 4 additions & 1 deletion crates/bevy_gltf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 4 additions & 1 deletion crates/bevy_input/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 5 additions & 2 deletions crates/bevy_math/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
7 changes: 5 additions & 2 deletions crates/bevy_pbr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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" }
15 changes: 9 additions & 6 deletions crates/bevy_property/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"] }
7 changes: 5 additions & 2 deletions crates/bevy_property/bevy_property_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
15 changes: 9 additions & 6 deletions crates/bevy_render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
9 changes: 6 additions & 3 deletions crates/bevy_scene/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
7 changes: 5 additions & 2 deletions crates/bevy_sprite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
8 changes: 4 additions & 4 deletions crates/bevy_tasks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Loading

0 comments on commit a9ce7f4

Please sign in to comment.