#properties #file-path #success #type #value #vec-entry

bin+lib propparse

用于解析.properties文件的库

4个版本

0.2.5 2023年10月3日
0.2.4 2023年4月8日
0.2.3 2023年3月9日
0.1.3 2023年3月5日

5#success

Download history 12/week @ 2024-03-13 3/week @ 2024-03-27 11/week @ 2024-04-03

61 次每月下载
用于 config-parse

MIT/Apache

17KB
432

属性解析器

使用0.2.3或更高版本。由于存在错误和不完整的解析,旧版本已被撤回。用法仍然相同

用于解析.properties文件的库。

类型在types模块中定义。

使用已发布的parse_file函数从给定路径解析文件。成功时,它返回一个包含提供文件中所有条目的Vec<Entry>

Entry提供以下数据结构

pub type Entry = (Key, Value);
pub type Key = Vec<String>;

pub enum Value {
    Integer(i64),
    Null,
    String(String),
}

无运行时依赖