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.
34 lines
636 B
34 lines
636 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"] }
|
|
toml = "0.8"
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.11", features = ["blocking", "json"] }
|
|
regex = "1"
|
|
chrono = "0.4"
|
|
dirs = "5"
|
|
|
|
[profile.dev]
|
|
opt-level = "z"
|
|
debug = true
|
|
strip = "debuginfo"
|
|
lto = false
|
|
codegen-units = 2
|
|
panic = "unwind"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
strip = "symbols"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|