[package]
edition = "2024"
name = "botkit"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified Rust bot framework with optional Discord, Telegram, and Matrix adapters"
readme = "README.md"
keywords = [
"bot",
"discord",
"telegram",
"matrix",
]
categories = [
"asynchronous",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lexoliu/botkit"
resolver = "2"
[features]
default = []
discord = ["dep:botkit-discord"]
full = [
"discord",
"telegram",
"matrix",
]
matrix = ["dep:botkit-matrix"]
telegram = ["dep:botkit-telegram"]
[lib]
name = "botkit"
path = "src/lib.rs"
[dependencies.botkit-core]
version = "0.1.0"
[dependencies.botkit-discord]
version = "0.1.0"
optional = true
[dependencies.botkit-matrix]
version = "0.1.0"
optional = true
[dependencies.botkit-telegram]
version = "0.1.0"
optional = true