1个不稳定版本

0.1.0 2024年5月2日

#127解析器工具

Download history • Rust 包仓库 165/week @ 2024-04-28 • Rust 包仓库 7/week @ 2024-05-05 • Rust 包仓库 8/week @ 2024-05-12 • Rust 包仓库 35/week @ 2024-05-19 • Rust 包仓库 20/week @ 2024-05-26 • Rust 包仓库 26/week @ 2024-06-02 • Rust 包仓库 23/week @ 2024-06-09 • Rust 包仓库 23/week @ 2024-06-16 • Rust 包仓库 17/week @ 2024-06-23 • Rust 包仓库 3/week @ 2024-06-30 • Rust 包仓库 6/week @ 2024-07-07 • Rust 包仓库 44/week @ 2024-07-14 • Rust 包仓库 3/week @ 2024-07-21 • Rust 包仓库 14/week @ 2024-07-28 • Rust 包仓库

67 每月下载次数
6 个crate中(3个直接) 使用

MIT 许可证

5KB
56

quake_infostring 测试 crates docs.rs

解析QuakeWorld信息字符串

使用方法

let info_str = r#"\maxfps\77\matchtag\kombat"#;
let info = quake_infostring::to_hashmap(&info_str);

assert_eq!(info.get("maxfps"), Some(&"77".to_string()));
assert_eq!(info.get("matchtag"), Some(&"kombat".to_string()));
assert_eq!(info.get("MISSING_KEY"), None);

另请参阅


lib.rs:

quake_infostring

解析QuakeWorld信息字符串

无运行时依赖