vmfparser 0.1.0

Parser for the Valve Map File format
Documentation
  • Coverage
  • 31.25%
    5 out of 16 items documented0 out of 8 items with examples
  • Size
  • Source code size: 6.99 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 448.11 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • leops/vmfparser-rs
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • leops

vmfparser-rs

Another parser for the VMF format, this time in Rust.

VMF is not a very complex format, so most of the API should be self-explanatory. Perhaps the most interesting feature is the ability to "brin your own key": the parser is agnostic over what type is used for the keys (block and property names), as long as it implements From<&str>. This means you can use a good old String, or a string_cache::Atom using a static table pre-filled with some VMF-related keywords.