Nightly Build / build (push) Successful in 7m1s
The generic per-user #plugins page is gone: a plugin with per-user settings hosts them in its own web_pages() sidebar page instead (Telegram's pairing page is new; Honcho's opt-in page already existed). The admin catalog moves from #plugin-catalog to #plugins (old hash redirected), and user_config_schema is removed from the Plugin trait, the API DTOs and both plugins — the my-config endpoint, the plugin_user_configs store and the update_user_config hook stay, now driven by each plugin's own page fragment.
20 lines
643 B
TOML
20 lines
643 B
TOML
[package]
|
|
name = "plugin-telegram-bot"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
core-api = { path = "../core-api" }
|
|
anyhow = "1"
|
|
async-trait = "0.1"
|
|
axum = { version = "0.8" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["rt"] }
|
|
tracing = "0.1"
|
|
teloxide = { version = "0.17.0", default-features = false, features = ["macros", "rustls", "ctrlc_handler"] }
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
|
|
rand = "0.10.1"
|
|
regex = "1"
|