bevy_mod_reqwest 0.22.0

Bevy http client using reqwest, with a focus on simple usage within the bevy runtime
Documentation
# bevy_mod_reqwest

[![crates.io](https://img.shields.io/crates/v/bevy_mod_reqwest)](https://crates.io/crates/bevy_mod_reqwest)
[![docs.rs](https://docs.rs/bevy_mod_reqwest/badge.svg)](https://docs.rs/bevy_mod_reqwest)

This crate helps when trying to use reqwest with bevy, without having to deal with async stuff, and it works on both web and and native
( only tested on x86_64 and wasm for now)

| Bevy version | bevy_mod_reqwest version |
| ------------ | ------------------------ |
| 0.19         | 0.22                     |
| 0.18         | 0.21                     |
| 0.17         | 0.20                     |
| 0.16         | 0.19                     |
| 0.15         | 0.18                     |
| 0.14         | 0.15 - 0.17              |
| 0.13         | 0.14                     |
| 0.12         | 0.12 - 0.13              |

## Example

``` rust