mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Move to smallvec v1.6 (#2074)
This commit is contained in:
parent
809877ade6
commit
81279f3090
4 changed files with 5 additions and 6 deletions
|
@ -27,7 +27,7 @@ downcast-rs = "1.2"
|
|||
parking_lot = "0.11.0"
|
||||
thiserror = "1.0"
|
||||
serde = "1"
|
||||
smallvec = { version = "1.4", features = ["serde"], optional = true }
|
||||
smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], optional = true }
|
||||
glam = { version = "0.13.0", features = ["serde"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -31,9 +31,8 @@ image = { version = "0.23.12", default-features = false }
|
|||
# misc
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
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.1"
|
||||
smallvec = { version = "1.6", feautres = ["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"
|
||||
|
|
|
@ -21,4 +21,4 @@ bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"
|
|||
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
||||
|
||||
# other
|
||||
smallvec = { version = "1.4", features = ["serde"] }
|
||||
smallvec = { version = "1.6", features = ["serde", "union", "const_generics"] }
|
||||
|
|
|
@ -33,4 +33,4 @@ bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
|||
# other
|
||||
stretch = "0.3"
|
||||
serde = {version = "1", features = ["derive"]}
|
||||
smallvec = "1.4"
|
||||
smallvec = { version = "1.6", feautres = ["union", "const_generics"] }
|
Loading…
Reference in a new issue