update deps

This commit is contained in:
Joe Ardent 2026-08-02 11:48:21 -07:00
parent 0d984bfaa5
commit 598c9109f8
3 changed files with 692 additions and 779 deletions

1460
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -228,13 +228,10 @@ impl JocalService {
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[derive(Default)]
pub enum RunningState {
#[default]
Running,
Stopping,
}
impl Default for RunningState {
fn default() -> Self {
Self::Running
}
}

View file

@ -315,7 +315,7 @@ pub async fn handle_receive_upload(
log::info!(
"saved content from {} to {file_path:?}",
&session.sender.alias
session.sender.alias
);
if let Ok(id) = Julid::from_str(session_id) {
service.send_event(JocalEvent::ReceivedInbound(id));
@ -344,7 +344,7 @@ pub async fn handle_cancel(
info!(
"{} cancelled the transfer of {}",
&session.sender.alias,
session.sender.alias,
session
.files
.values()