4 releases

new 0.6.6 Jan 8, 2025
0.6.5 Oct 6, 2024
0.6.4 Aug 28, 2024
0.6.2 Jul 21, 2024
0.2.2 Dec 28, 2023

#241 in HTTP client

Download history 189/week @ 2024-09-22 72/week @ 2024-09-29 197/week @ 2024-10-06 39/week @ 2024-10-13 23/week @ 2024-10-20 1/week @ 2024-10-27 52/week @ 2024-12-08 116/week @ 2025-01-05

116 downloads per month
Used in 2 crates

MIT/Apache

96KB
2K SLoC

VK Teams Bot API client

VK Teams Bot API client written in Rust.

Table of Contents

Environment

  1. Begin with bot API following instructions

  2. Set environment variables or save in .env file

# Unix-like
$ export VKTEAMS_BOT_API_TOKEN=<Your token here> #require
$ export VKTEAMS_BOT_API_URL=<Your base api url> #require
$ export VKTEAMS_PROXY=<Proxy> #optional

# Windows
$ set VKTEAMS_BOT_API_TOKEN=<Your token here> #require
$ set VKTEAMS_BOT_API_URL=<Your base api url> #require
$ set VKTEAMS_PROXY=<Proxy> #optional
  1. Put lines in you Cargo.toml file
[dependencies]
vkteams_bot = { version = "0.6", feature = ["full"] }
log = "0.4"

Usage examples

Examples:

Dependencies

~7–21MB
~288K SLoC