rvk 0.1.5

Crate for accessing VK API
# `rvk`
[![version](https://img.shields.io/crates/v/rvk.svg?style=flat-square)](https://crates.io/crates/rvk)
[![downloads](https://img.shields.io/crates/d/rvk.svg?style=flat-square)](https://crates.io/crates/rvk)
[![license](https://img.shields.io/crates/l/rvk.svg?style=flat-square)](https://crates.io/crates/rvk)

A crate for accessing VK API in Rust.

# Usage
Add the dependency to your `Cargo.toml` file:

```toml
[dependencies]
rvk = "0.1"
```

Also, add this line to your crate:

```rust
extern crate rvk;
```

Now you can take a look at this crate's [API documentation](https://docs.rs/rvk) to learn more about the available functions.

# Example

The example is located in the [API Documentation](https://docs.rs/rvk/*/rvk/#example).