5 个版本

0.0.5 2021 年 7 月 22 日
0.0.4 2021 年 7 月 22 日
0.0.3 2021 年 7 月 21 日
0.0.2 2021 年 7 月 21 日
0.0.1 2021 年 7 月 19 日

32#thrift

MIT 许可证

63KB
2K SLoC

Thrift 解析器

由 nom 驱动的另一个 thrift 解析器。

示例

use std::str::FromStr;

use thrift_parser::Parser;

fn main() {
    let mut idl_path =
        std::path::PathBuf::from_str(&std::env::var("CARGO_MANIFEST_DIR").unwrap()).unwrap();
    idl_path.extend(vec!["thrift", "demo.thrift"]);
    let idl = std::fs::read_to_string(idl_path).unwrap();
    let (remains, document) = thrift_parser::document::Document::parse(&idl).unwrap();
    println!("Parser remains: {:?}, document: {:?}", remains, document);
}

依赖项

~4MB
~92K SLoC