mirror of
https://gitea.0xace.cc/rust/telegram-notifier.git
synced 2025-04-05 13:51:55 +00:00
update deps
This commit is contained in:
parent
d60af14aa6
commit
6322588d4e
1497
Cargo.lock
generated
1497
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
10
Cargo.toml
10
Cargo.toml
@ -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"
|
||||||
|
@ -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()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user