Bump glam and hexasphere versions (#2111)

Also fixes typo "feautres" in smallvec dependency.
This commit is contained in:
Patrik Buhring 2021-05-06 00:41:18 +00:00
parent ce6889b9a8
commit 4e524841a1
4 changed files with 21 additions and 21 deletions

View File

@ -1,17 +1,17 @@
[package]
name = "bevy_math"
version = "0.5.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
"Carter Anderson <mcanders1@gmail.com>",
]
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.13.0", features = ["serde"] }
bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] }
[package]
name = "bevy_math"
version = "0.5.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
"Carter Anderson <mcanders1@gmail.com>",
]
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.14.0", features = ["serde"] }
bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] }

View File

@ -28,7 +28,7 @@ parking_lot = "0.11.0"
thiserror = "1.0"
serde = "1"
smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], optional = true }
glam = { version = "0.13.0", features = ["serde"], optional = true }
glam = { version = "0.14.0", features = ["serde"], optional = true }
[dev-dependencies]
ron = "0.6.2"

View File

@ -31,13 +31,13 @@ image = { version = "0.23.12", default-features = false }
# misc
serde = { version = "1", features = ["derive"] }
bitflags = "1.2.1"
smallvec = { version = "1.6", feautres = ["union", "const_generics"] }
smallvec = { version = "1.6", features = ["union", "const_generics"] }
once_cell = "1.4.1" # TODO: replace once_cell with std equivalent if/when this lands: https://github.com/rust-lang/rfcs/pull/2788
downcast-rs = "1.2.0"
thiserror = "1.0"
anyhow = "1.0"
hex = "0.4.2"
hexasphere = "3.2"
hexasphere = "3.3"
parking_lot = "0.11.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

View File

@ -33,4 +33,4 @@ bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
# other
stretch = "0.3"
serde = {version = "1", features = ["derive"]}
smallvec = { version = "1.6", feautres = ["union", "const_generics"] }
smallvec = { version = "1.6", features = ["union", "const_generics"] }