Bump glam and hexasphere versions (#2111)
Also fixes typo "feautres" in smallvec dependency.
This commit is contained in:
parent
ce6889b9a8
commit
4e524841a1
@ -1,17 +1,17 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_math"
|
name = "bevy_math"
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = [
|
authors = [
|
||||||
"Bevy Contributors <bevyengine@gmail.com>",
|
"Bevy Contributors <bevyengine@gmail.com>",
|
||||||
"Carter Anderson <mcanders1@gmail.com>",
|
"Carter Anderson <mcanders1@gmail.com>",
|
||||||
]
|
]
|
||||||
description = "Provides math functionality for Bevy Engine"
|
description = "Provides math functionality for Bevy Engine"
|
||||||
homepage = "https://bevyengine.org"
|
homepage = "https://bevyengine.org"
|
||||||
repository = "https://github.com/bevyengine/bevy"
|
repository = "https://github.com/bevyengine/bevy"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
keywords = ["bevy"]
|
keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
glam = { version = "0.13.0", features = ["serde"] }
|
glam = { version = "0.14.0", features = ["serde"] }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] }
|
bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] }
|
||||||
|
@ -28,7 +28,7 @@ parking_lot = "0.11.0"
|
|||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
serde = "1"
|
serde = "1"
|
||||||
smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], optional = true }
|
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]
|
[dev-dependencies]
|
||||||
ron = "0.6.2"
|
ron = "0.6.2"
|
||||||
|
@ -31,13 +31,13 @@ image = { version = "0.23.12", default-features = false }
|
|||||||
# misc
|
# misc
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
bitflags = "1.2.1"
|
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
|
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"
|
downcast-rs = "1.2.0"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
hex = "0.4.2"
|
hex = "0.4.2"
|
||||||
hexasphere = "3.2"
|
hexasphere = "3.3"
|
||||||
parking_lot = "0.11.0"
|
parking_lot = "0.11.0"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
|
@ -33,4 +33,4 @@ bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
|||||||
# other
|
# other
|
||||||
stretch = "0.3"
|
stretch = "0.3"
|
||||||
serde = {version = "1", features = ["derive"]}
|
serde = {version = "1", features = ["derive"]}
|
||||||
smallvec = { version = "1.6", feautres = ["union", "const_generics"] }
|
smallvec = { version = "1.6", features = ["union", "const_generics"] }
|
||||||
|
Loading…
Reference in New Issue
Block a user