gecko

A simple library to access coingecko's api.

Dependecy

[dependecies] tokio = { version = "1", features = ["full"] } gecko = { version = "0.1.6" }

Example

```rust use gecko;

[tokio::main]

async fn main() -> Result<(), Box> { let geckoclient = gecko::CoinGeckoAPI::default(); let coinslist = gecko::coins::List::required(); let response = geckoclient(&coinslist).await.unwrap(); println!("{:?}", response): } ```

Note

The testing only covers that the api endpoints are reachable (200 code). Responses are translated into a serde json values and the correctness of expected values are not tested.

ps

this is my first rust project so be nice :)