vkteams-bot

Crates.iovkteams-bot
lib.rsvkteams-bot
version0.6.5
sourcesrc
created_at2023-12-10 11:25:42.899526
updated_at2024-10-06 23:16:18.160875
descriptionVK Teams Bot API client
homepage
repositoryhttps://github.com/bug-ops/vkteams-bot/tree/master
max_upload_size
id1064154
size179,223
Andrei G (bug-ops)

documentation

README

docs.rs crates.io github.com Unsafe forbidden

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:

Commit count: 0

cargo fmt