Skip to content

Commit

Permalink
README.md: cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Dec 9, 2024
1 parent 9391ca8 commit 09316d6
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,37 @@ This library is relatively young, breaking API changes are possible.
### Blocking Client

```toml
rabbitmq_http_client = { git = "https://github.com/michaelklishin/rabbitmq-http-api-rs", features = ["core", "blocking"] }
rabbitmq_http_client = {
git = "https://github.com/michaelklishin/rabbitmq-http-api-rs",
features = ["core", "blocking"]
}
```

### Async Client

```toml
rabbitmq_http_client = { git = "https://github.com/michaelklishin/rabbitmq-http-api-rs", features = ["core", "async"] }
rabbitmq_http_client = {
git = "https://github.com/michaelklishin/rabbitmq-http-api-rs",
features = ["core", "async"]
}
```

### Blocking Client with Tabled Support

```toml
rabbitmq_http_client = { git = "https://github.com/michaelklishin/rabbitmq-http-api-rs", features = ["core", "blocking", "tabled"] }
rabbitmq_http_client = {
git = "https://github.com/michaelklishin/rabbitmq-http-api-rs",
features = ["core", "blocking", "tabled"]
}
```

### Async CLient with Tabled Support

```toml
rabbitmq_http_client = { git = "https://github.com/michaelklishin/rabbitmq-http-api-rs", features = ["core", "async", "tabled"] }
rabbitmq_http_client = {
git = "https://github.com/michaelklishin/rabbitmq-http-api-rs",
features = ["core", "async", "tabled"]
}
```


Expand Down

0 comments on commit 09316d6

Please sign in to comment.