https://github.com/leops/vmfparser-rs
Parse VMF files, in Rust
https://github.com/leops/vmfparser-rs
parser rust source-engine vmf
Last synced: 11 months ago
JSON representation
Parse VMF files, in Rust
- Host: GitHub
- URL: https://github.com/leops/vmfparser-rs
- Owner: leops
- Created: 2017-08-24T17:58:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-24T18:49:13.000Z (over 8 years ago)
- Last Synced: 2025-03-28T09:46:14.560Z (12 months ago)
- Topics: parser, rust, source-engine, vmf
- Language: Rust
- Size: 1.95 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
vmfparser-rs
=============
[Another parser](https://github.com/leops/vmfparser) 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](https://github.com/servo/string-cache)::Atom using
a static table pre-filled with some VMF-related keywords.