You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
433 B
19 lines
433 B
[package]
|
|
name = "tbotsend-rs"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["Aaron Johnson <amjohnson@skyfall.tech>"]
|
|
description = "Telegram bot message sender"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.11", features = ["blocking", "json"] }
|
|
regex = "1"
|
|
chrono = "0.4"
|
|
dirs = "5"
|
|
|