Skip to content
Closed
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
36aaf87
need to quickly store these changes
Trashtalk217 Dec 9, 2024
c1765f4
first working version
Trashtalk217 Dec 12, 2024
0dacf05
added documentation
Trashtalk217 Dec 12, 2024
1f2441f
made clippy suggestions
Trashtalk217 Dec 12, 2024
5528b19
Remove TODO and add docs about limitations of `PlaybackMode::Once` (#…
rparrett Dec 12, 2024
df88e95
Update the prepass shaders and fix the batching logic for bindless an…
pcwalton Dec 12, 2024
4332898
`BorderRect` maintenance (#16727)
ickshonpe Dec 12, 2024
38e7517
UI slice bug (#16772)
romamik Dec 12, 2024
7cbac81
Remove duplicated instruction line in `lighting` example (#16767)
rparrett Dec 12, 2024
afa7574
rename SortedSmallVec to SortedVecSet
Trashtalk217 Dec 16, 2024
91b8318
rename ones into iter
Trashtalk217 Dec 16, 2024
9841170
refactored difference and intersection
Trashtalk217 Dec 16, 2024
3480bf8
simplified from implementations for difference and intersection
Trashtalk217 Dec 16, 2024
2f57d5c
made manual Debug impl into derive, fixed tests, made pub into pub(cr…
Trashtalk217 Dec 19, 2024
e443cbf
implemented intersect_with and difference_with, removed extend
Trashtalk217 Dec 21, 2024
b1f930f
Merge branch 'main' into remove-access-bitset
Trashtalk217 Dec 21, 2024
b05ff0c
fixed CI
Trashtalk217 Dec 21, 2024
9e80e36
cargo fmt
Trashtalk217 Dec 21, 2024
1c296d0
listened to commisar clippy
Trashtalk217 Dec 21, 2024
e838980
fixed merge conflict (again) and added tests)
Trashtalk217 Dec 27, 2024
4bb1a32
cargo fmt
Trashtalk217 Dec 27, 2024
3548bc5
Merge branch 'main' of https://github.com/bevyengine/bevy into remove…
Trashtalk217 Dec 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/bevy_ecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ derive_more = { version = "1", default-features = false, features = [
] }
nonmax = { version = "0.5", default-features = false }
arrayvec = { version = "0.7.4", default-features = false, optional = true }
smallvec = { version = "1", features = ["union"] }
smallvec = { version = "1.13", features = ["union", "const_generics", "const_new"] }
indexmap = { version = "2.5.0", default-features = false }
variadics_please = { version = "1.1", default-features = false }
critical-section = { version = "1.2.0", optional = true }
Expand Down
Loading
Loading