chore: update packages

This commit is contained in:
trafficlunar 2025-07-20 16:00:03 +01:00
parent a93fc137e8
commit 3397a2ffa1
3 changed files with 423 additions and 497 deletions

914
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -7,6 +7,6 @@ edition = "2021"
dotenvy = "0.15.7" dotenvy = "0.15.7"
inputbot = "0.6.0" inputbot = "0.6.0"
notify-rust = "4.11.3" notify-rust = "4.11.3"
sysinfo = "0.32.1" sysinfo = "0.36.1"
tungstenite = { version = "0.24.0", features = ["native-tls"] } tungstenite = { version = "0.27.0", features = ["native-tls"] }
url = "2.5.4" url = "2.5.4"

View file

@ -57,5 +57,5 @@ pub fn send(
println!("Sending to WebSocket: {}", message); println!("Sending to WebSocket: {}", message);
socket.send(Message::Text(message)).unwrap(); socket.send(Message::Text(message.into())).unwrap();
} }