| Crates.io | beat_saber_map |
| lib.rs | beat_saber_map |
| version | 0.4.0 |
| created_at | 2024-08-04 00:23:26.556541+00 |
| updated_at | 2024-10-05 20:52:47.179779+00 |
| description | Read and write Beat Saber maps with Rust. |
| homepage | |
| repository | https://github.com/valentinegb/beat-saber-map-rs |
| max_upload_size | |
| id | 1324601 |
| size | 67,444 |
beat_saber_mapRead and write Beat Saber maps with Rust.
use beat_saber_map::BeatSaberMap;
let map = BeatSaberMap::from_dir("sample").unwrap();
assert_eq!(map.info.version, "4.0.0");
assert_eq!(map.info.song.title, "Magic");
assert_eq!(map.info.environment_names.first().unwrap(), "WeaveEnvironment");
Documentation can be found on docs.rs.
BeatSaberMap