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.

Updated version numbers.

+5 -5
+3 -3
Cargo.lock
··· 160 160 161 161 [[package]] 162 162 name = "bsru" 163 - version = "0.5.0-beta.1" 163 + version = "0.5.0" 164 164 dependencies = [ 165 165 "bevy_color", 166 166 "bevy_reflect", ··· 384 384 385 385 [[package]] 386 386 name = "loose_enum" 387 - version = "0.1.0-beta.2" 387 + version = "0.1.0" 388 388 source = "registry+https://github.com/rust-lang/crates.io-index" 389 - checksum = "243534cb7234245d5c56c85bdcd1fcebc690688a2098b9b5935555160c0e471f" 389 + checksum = "75aa740f34d6aada4337d4dccc2232686ade9c3944f806e198ddaf1debef167d" 390 390 dependencies = [ 391 391 "serde_core", 392 392 ]
+2 -2
Cargo.toml
··· 1 1 [package] 2 2 name = "bsru" 3 - version = "0.5.0-beta.1" 3 + version = "0.5.0" 4 4 edition = "2024" 5 5 description = "Beatsaber Rust Utilities: A Beatsaber V3 parsing library." 6 6 categories = ["game-development", "data-structures", "parser-implementations"] ··· 19 19 ] } 20 20 bevy_reflect = { version = "0.17.0", optional = true, default-features = false } 21 21 indexmap = "2.10.0" 22 - loose_enum = { version = "0.1.0-beta.2", features = ["serde"] } 22 + loose_enum = { version = "0.1.0", features = ["serde"] } 23 23 ordered-float = "5.0.0" 24 24 serde = { version = "1.0.219", features = ["derive"] } 25 25 serde_json = "1.0.140"