Move to smallvec v1.6 (#2074)
This commit is contained in:
parent
809877ade6
commit
81279f3090
@ -27,7 +27,7 @@ downcast-rs = "1.2"
|
|||||||
parking_lot = "0.11.0"
|
parking_lot = "0.11.0"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
serde = "1"
|
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 }
|
glam = { version = "0.13.0", features = ["serde"], optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -31,9 +31,8 @@ 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 = "1.4.2"
|
smallvec = { version = "1.6", feautres = ["union", "const_generics"] }
|
||||||
# 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
|
||||||
once_cell = "1.4.1"
|
|
||||||
downcast-rs = "1.2.0"
|
downcast-rs = "1.2.0"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
anyhow = "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" }
|
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
||||||
|
|
||||||
# other
|
# 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
|
# other
|
||||||
stretch = "0.3"
|
stretch = "0.3"
|
||||||
serde = {version = "1", features = ["derive"]}
|
serde = {version = "1", features = ["derive"]}
|
||||||
smallvec = "1.4"
|
smallvec = { version = "1.6", feautres = ["union", "const_generics"] }
|
Loading…
Reference in New Issue
Block a user