[package] name = "postrs" version = "0.1.0" edition = "2021" authors = ["Austin Poor <45295232+a-poor@users.noreply.github.com>"] license = "MIT" description = "A tool for interacting with Postman collections in Rust." homepage = "https://github.com/a-poor/postrs" repository = "https://github.com/a-poor/postrs" documentation = "https://docs.rs/postrs" readme = "README.md" [lib] name = "postrs" path = "src/lib.rs" [[bin]] name = "postrs" path = "src/bin.rs" [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" validator = { version = "0.15", features = ["derive"] }