petstore 0.1.0

Official PetStore client, generated from the OpenAPI spec.
Documentation
<div id="top"></div>

<p align="center">
    <a href="https://github.com/libninjacom/petstore-rust/graphs/contributors">
        <img src="https://img.shields.io/github/contributors/libninjacom/petstore-rust.svg?style=flat-square" alt="GitHub Contributors" />
    </a>
    <a href="https://github.com/libninjacom/petstore-rust/stargazers">
        <img src="https://img.shields.io/github/stars/libninjacom/petstore-rust.svg?style=flat-square" alt="Stars" />
    </a>
    <a href="https://github.com/libninjacom/petstore-rust/actions">
        <img src="https://img.shields.io/github/workflow/status/libninjacom/petstore-rust/test?style=flat-square" alt="Build Status" />
    </a>
    
<a href="https://crates.io/crates/petstore">
    <img src="https://img.shields.io/crates/d/petstore?style=flat-square" alt="Downloads" />
</a>
<a href="https://crates.io/crates/petstore">
    <img src="https://img.shields.io/crates/v/petstore?style=flat-square" alt="Crates.io" />
</a>

</p>

```rust
use petstore::PetStoreClient;

#[tokio::main]
async fn main() {
    let client = PetStoreClient::new("http://localhost:5000")
        .with_middleware(httpclient::middleware::RecorderMiddleware::new());
    let item_get = client.list_pets(100)
        .await
        .unwrap();
    println!("{:#?}", item_get);
}
```


Official PetStore client, generated from the OpenAPI spec.

# [Documentation]https://docs.rs/petstore/latest/petstore

# Contributing

Contributions are welcome!