update deps

This commit is contained in:
ace 2025-03-23 02:27:07 +03:00
parent d60af14aa6
commit 6322588d4e
Signed by: ace
GPG Key ID: F7EC00FB2C3118AD
3 changed files with 1008 additions and 503 deletions

1497
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +1,18 @@
[package] [package]
name = "telegram-notifier" name = "telegram-notifier"
version = "0.1.1" version = "0.1.2"
authors = ["ace <ace@0xace.cc>"] authors = ["ace <ace@0xace.cc>"]
edition = "2021" edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
frankenstein = { version = "0.29.1", default-features = false, features = ["async-http-client"] } frankenstein = { version = "0.39", features = ["client-reqwest"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9" serde_yaml = "0.9"
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] } clap = { version = "4", features = ["derive"] }
log = "0.4" log = "0.4"
stderrlog = "0.5" stderrlog = "0.6"
rand = "0.8" rand = "0.9"
chrono ="0.4" chrono ="0.4"

View File

@ -5,7 +5,7 @@ use tokio;
use log::*; use log::*;
use chrono::prelude::*; use chrono::prelude::*;
use frankenstein; use frankenstein;
use frankenstein::AsyncApi; use frankenstein::client_reqwest::Bot;
use frankenstein::AsyncTelegramApi; use frankenstein::AsyncTelegramApi;
use frankenstein::SendMessageParams; use frankenstein::SendMessageParams;
@ -75,7 +75,7 @@ async fn telegram_notify(opts: &Opts, config: &Config) -> Result<(), Box<dyn std
println!("{} - LOG - Using chat id: {}", Local::now().trunc_subsecs(0).to_rfc3339(), config.chatid); println!("{} - LOG - Using chat id: {}", Local::now().trunc_subsecs(0).to_rfc3339(), config.chatid);
println!("{} - LOG - {}", Local::now().trunc_subsecs(0).to_rfc3339(), opts.msg); println!("{} - LOG - {}", Local::now().trunc_subsecs(0).to_rfc3339(), opts.msg);
let api = AsyncApi::new(&config.token); let api = Bot::new(&config.token);
let str = Local::now().format("%Y-%m-%d %H:%M:%S: ").to_string() + &opts.msg.to_string(); let str = Local::now().format("%Y-%m-%d %H:%M:%S: ").to_string() + &opts.msg.to_string();
let send_message_params: SendMessageParams = SendMessageParams::builder() let send_message_params: SendMessageParams = SendMessageParams::builder()