Skip to content

Commit

Permalink
Move to smallvec v1.6 (bevyengine#2074)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRawMeatball authored and ostwilkens committed Jul 27, 2021
1 parent a516f6d commit 8116644
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/bevy_reflect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
5 changes: 2 additions & 3 deletions crates/bevy_render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_transform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion crates/bevy_ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit 8116644

Please sign in to comment.