fast_vk 0.6.1

Relatively low-level VK API library designed for millions requests per second
Documentation
1
2
3
4
5
6
7
use serde_json::Value;

const USERS_JSON: &str = include_str!("users.json");

lazy_static::lazy_static! {
    pub static ref USERS: Vec<Value> = serde_json::from_str(&USERS_JSON).unwrap();
}