| Crates.io | vmfparser |
| lib.rs | vmfparser |
| version | 0.1.0 |
| created_at | 2017-08-24 18:49:24.167757+00 |
| updated_at | 2017-08-24 18:49:24.167757+00 |
| description | Parser for the Valve Map File format |
| homepage | |
| repository | https://github.com/leops/vmfparser-rs/ |
| max_upload_size | |
| id | 28871 |
| size | 6,996 |
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.