Beatsaber Rust Utilities: A Beatsaber V3 parsing library.
beatsaber beatmap
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update version number and add compatibility table

+10 -3
+1 -1
Cargo.lock
··· 160 160 161 161 [[package]] 162 162 name = "bsru" 163 - version = "0.3.0" 163 + version = "0.4.0-rc.1" 164 164 dependencies = [ 165 165 "bevy_color", 166 166 "bevy_reflect",
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "bsru" 3 - version = "0.3.0" 3 + version = "0.4.0-rc.1" 4 4 edition = "2024" 5 5 description = "Beatsaber Rust Utilities: A Beatsaber V3 parsing library." 6 6 categories = ["game-development", "data-structures", "parser-implementations"]
+8 -1
README.md
··· 19 19 | Flag | Description | 20 20 |----------------|--------------------------------------------------------------------------| 21 21 | `bevy_color` | Adds `From` implementations for converting color schemes to Bevy colors. | 22 - | `bevy_reflect` | Adds `Reflect` derives for all types. | 22 + | `bevy_reflect` | Adds `Reflect` derives for all types. | 23 + 24 + ### Bevy Version Compatibility 25 + 26 + | Bevy | BSRU | 27 + |--------|---------------| 28 + | `0.16` | `0.1` - `0.3` | 29 + | `0.17` | `0.4` |