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.

at dev 26 lines 822 B view raw
1[package] 2name = "bsru" 3version = "0.7.0" 4edition = "2024" 5description = "Beatsaber Rust Utilities: A Beatsaber V3 parsing library." 6categories = ["game-development", "data-structures", "parser-implementations"] 7keywords = ["beatsaber", "beatmap"] 8repository = "https://tangled.org/alephcubed.com/BSRU" 9license = "MIT OR Apache-2.0" 10authors = ["AlephCubed"] 11 12[features] 13bevy_color = ["dep:bevy_color"] 14bevy_reflect = ["dep:bevy_reflect"] 15 16[dependencies] 17bevy_color = { version = "0.18", optional = true, default-features = false, features = [ 18 "std", 19] } 20bevy_reflect = { version = "0.18", optional = true, default-features = false } 21indexmap = "2.12" 22loose_enum = { version = "0.1", features = ["serde"] } 23ordered-float = "5.1" 24serde = { version = "1.0", features = ["derive"] } 25serde_json = "1.0" 26simple-easing = "1.0"