tf-demo-parser 0.5.1

parser for tf2 demo files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
final: prev: {
  demostf-parser = final.callPackage ./parser.nix {};
  demostf-parser-codegen = final.callPackage ./codegen.nix {};
  demostf-parser-codegen-events = final.runCommand "gameevent_gen.rs" {} ''
    ${final.demostf-parser-codegen}/bin/codegen ${./test_data/short-2024.dem} events > $out
    ${final.rustfmt}/bin/rustfmt $out
  '';
  demostf-parser-codegen-props = final.runCommand "sendprop_gen.rs" {} ''
    ${final.demostf-parser-codegen}/bin/codegen ${./test_data/short-2024.dem} props > $out
    ${final.rustfmt}/bin/rustfmt $out
  '';
}