6 个版本
0.1.5 | 2023年2月12日 |
---|---|
0.1.4 | 2023年2月12日 |
#2579 in 解析器实现
每月下载 27 次
16KB
273 行
pest-wdl-1
Pest 解析器语法用于工作流描述语言 (WDL)。
用法
use pest::iterators::Pair;
use pest_wdl_1 as wdl;
fn main() {
let text = r#"
version 1.0
workflow foo {
}
"#;
let root: Pair<'_, wdl::Rule> =
wdl::parse_document(text).expect("Error parsing WDL document");
...
}
依赖关系
~2.2–3MB
~59K SLoC