#collection #postman #deserialize #serialization

postman_collection

Postman Collection 序列化与反序列化库

2 个不稳定版本

0.2.0 2022年7月8日
0.1.0 2018年11月17日

#1609 in 编码

MIT 许可证

96KB
1.5K SLoC

postman-collection-rs

Postman Collection 序列化与反序列化库,使用 Rust 编写。

Build Status Latest version Documentation License

安装

将以下内容添加到您的 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

贡献

本项目遵循 semverconventional commits 和使用 semantic-rs 的语义发布。

注意

灵感来源于 softprops/openapi

依赖项

~5.5–8MB
~186K SLoC