vdf-parser 0.1.8

A parser for Valve Data Format (VDF) files.
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Debug, Error)]
pub enum VdfError {
    #[error("IO error: {0}")]
    Io(#[from] std::io::Error),
    #[error("Couldn't get value '{0}' from block '{1}'")]
    ValueNotFound(String, String),
}