1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 10:14:06 +02:00

fmt+clippy

This commit is contained in:
Robin Appelman 2025-02-19 20:32:49 +01:00
commit 2bad24dedd
30 changed files with 947 additions and 3396 deletions

View file

@ -22,7 +22,7 @@ which will place the binary at `target/release/parse_demo`
Basic usage is as simple as `parse_demo demofile.dem` which will output a "summary" of the demo file in JSON format.
Passing the `detailed_summary` argument to the end of `parse_demo` will output a table with scoreboard information for all players who were ever on the server while the demo
was being recorded. The player who created the demo will be highlighted in the output.
was being recorded. The player who created the demo will be highlighted in the output.
## Advanced usage
@ -67,4 +67,4 @@ Once you have a custom analyser you can use it with:
```rust
DemoParser::new_all_with_analyser(demo.get_stream(), CustomAnalyser::new());
let (header, state) = parser.parse()?;
```
```