# spigot A parser for Valve's Key-Value format, used in vmt files, gameinfo.txt, etc. Example: ```rust use spigot::{from_str, Value}; fn main() { let gameinfo = spigot::from_str(include_str!("portal/gameinfo.txt")); assert_eq!(&gameinfo["GameInfo"]["game"], Value::String("Portal".to_string())); } ```