[package]
edition = "2024"
name = "telegram-notify"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tiny async Rust crate for sending Telegram bot messages"
readme = "README.md"
keywords = [
"telegram",
"bot",
"notifications",
"alerting",
]
categories = [
"api-bindings",
"network-programming",
]
license = "MIT"
repository = "https://github.com/fyxtez/telegram-notify"
[lib]
name = "telegram_notify"
path = "src/lib.rs"
[[example]]
name = "chat_id"
path = "examples/chat_id.rs"
[[example]]
name = "send"
path = "examples/send.rs"
[dependencies.teloxide]
version = "0.17"
[dependencies.tokio]
version = "1.51.1"
features = [
"rt",
"macros",
]