rustigram-bot 0.12.0

High-level bot dispatcher, update listener, and handler framework for rustigram
Documentation
[package]
name        = "rustigram-bot"
description = "High-level bot dispatcher, update listener, and handler framework for rustigram"
keywords    = ["telegram", "bot", "async", "framework", "dispatcher"]
categories  = ["api-bindings", "asynchronous"]
version.workspace     = true
edition.workspace     = true
authors.workspace     = true
license.workspace     = true
readme.workspace      = true
repository.workspace  = true
rust-version.workspace = true

[dependencies]
rustigram-types = { workspace = true }
rustigram-api   = { workspace = true }
rustigram-miniapp = { workspace = true, optional = true }
tokio           = { workspace = true }
thiserror       = { workspace = true }
anyhow          = { workspace = true }
async-trait     = { workspace = true }
tracing         = { workspace = true }
axum            = { workspace = true }
dashmap         = { workspace = true }

[dev-dependencies]
tokio              = { workspace = true }
tracing-subscriber = { workspace = true }
# Test-only: drives the webhook router via ServiceExt::oneshot without binding a port.
tower              = { workspace = true, features = ["util"] }
serde_json.workspace = true
wiremock.workspace = true

[features]
tma = ["dep:rustigram-miniapp"]