3个版本
0.2.3 | 2024年4月19日 |
---|---|
0.2.2 | 2024年4月15日 |
0.2.1 | 2024年4月15日 |
#944 in 解析器实现
93 每月下载量
用于 atac
40KB
642 行
postman-collection-rs
Postman Collection序列化与反序列化库,用Rust编写。
安装
将以下内容添加到您的 Cargo.toml
文件中
[dependencies]
postman_collection = "0.1"
使用
extern crate postman_collection;
fn main() {
match postman_collection::from_path("path/to/postman-collection.json") {
Ok(spec) => println!("spec: {:?}", spec),
Err(err) => println!("error: {}", err)
}
}
更多信息请参见 examples/printer.rs
贡献
本项目遵循 semver,conventional commits 以及使用 semantic-rs 进行语义发布。
注意
灵感来源于 softprops/openapi。
依赖项
~5.5–8MB
~188K SLoC