osr-parser 0.7.4

Library for parsing osu! osr files!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Small libray to parse osu! osr files!

# Example


```rs
let mut replay = osr_parser::Replay::read("./replay.osr").expect("Can't open the .osr file!");

// replay.gamemode
// replay.version
// replay.username
// .....

// lzma feature should be enabled.
let lzma_stream = replay.parse_lzma()?
```