Skip to content

Commit 2bad24d

Browse files
committed
fmt+clippy
1 parent 43c9021 commit 2bad24d

30 files changed

+947
-3396
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
name: ci
4141
instance: https://cache.icewind.me
42-
authToken: '${{ secrets.ATTIC_TOKEN }}'
42+
authToken: "${{ secrets.ATTIC_TOKEN }}"
4343
- run: nix run .#demostf-parser-schema > schema.json
4444
- run: |
4545
git diff

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ jobs:
4040
repo_token: ${{ secrets.GITHUB_TOKEN }}
4141
file: result/bin/parse_demo${{ matrix.binary-suffix }}
4242
asset_name: parser-${{ matrix.target }}${{ matrix.binary-suffix }}
43-
tag: ${{ github.ref }}
43+
tag: ${{ github.ref }}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ which will place the binary at `target/release/parse_demo`
2222
Basic usage is as simple as `parse_demo demofile.dem` which will output a "summary" of the demo file in JSON format.
2323

2424
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
25-
was being recorded. The player who created the demo will be highlighted in the output.
25+
was being recorded. The player who created the demo will be highlighted in the output.
2626

2727
## Advanced usage
2828

@@ -67,4 +67,4 @@ Once you have a custom analyser you can use it with:
6767
```rust
6868
DemoParser::new_all_with_analyser(demo.get_stream(), CustomAnalyser::new());
6969
let (header, state) = parser.parse()?;
70-
```
70+
```

flake.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
demostf-parser-schema = pkgs: pkgs.demostf-parser-schema;
3030
};
3131

32-
tools = pkgs: with pkgs; [cargo-insta];
32+
tools = pkgs: with pkgs; [bacon cargo-insta];
3333
};
34-
}
34+
}

0 commit comments

Comments
 (0)