Skip to content

Commit b3c13a1

Browse files
committed
Update dependencies
1 parent b382bf3 commit b3c13a1

File tree

7 files changed

+31
-31
lines changed

7 files changed

+31
-31
lines changed

Cargo.lock

+22-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ derive_more = "2.0.1"
4949
diesel = { version = "2.2.7", default-features = false, features = ["sqlite"] }
5050
digest = "0.10.7"
5151
image = "0.25.5"
52-
jiff = "0.2.0"
52+
jiff = "0.2.1"
5353
log = "0.4.25"
5454
mime = "0.3.17"
5555
nonicle = "0.1.1"
@@ -58,7 +58,7 @@ semval = "0.5.2"
5858
serde = "1.0.217"
5959
serde_json = "1.0.138"
6060
static_assertions = "1.1.0"
61-
strum = "0.27.0"
61+
strum = "0.27.1"
6262
tantivy = "0.22.0"
6363
time = "0.3.37"
6464
thiserror = "2.0.11"

crates/desktop-app/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ workspace = true
1818

1919
[dependencies]
2020
anyhow.workspace = true
21-
discro = { version = "0.32.0", features = ["tokio"] }
21+
discro = { version = "0.33.0", features = ["tokio"] }
2222
highway = { version = "1.3.0" }
2323
log.workspace = true
2424
ron = "0.8.1"

crates/desktop-app/src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
use std::ops::{Add, AddAssign};
55

6-
use discro::{ModifyStatus, Publisher};
6+
use discro::{ModifiedStatus, Publisher};
77
use tokio::task::JoinHandle;
88

99
pub use aoide_backend_embedded::Environment;
@@ -87,7 +87,7 @@ impl AddAssign for ActionEffect {
8787
}
8888
}
8989

90-
impl ModifyStatus for ActionEffect {
90+
impl ModifiedStatus for ActionEffect {
9191
fn is_modified(&self) -> bool {
9292
match self {
9393
Self::Unchanged => false,
@@ -105,7 +105,7 @@ pub(crate) fn modify_shared_state_action_effect<State>(
105105

106106
struct ActionEffectResult<Result>(ActionEffect, Result);
107107

108-
impl<Result> ModifyStatus for ActionEffectResult<Result> {
108+
impl<Result> ModifiedStatus for ActionEffectResult<Result> {
109109
fn is_modified(&self) -> bool {
110110
self.0.is_modified()
111111
}

crates/media-file/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ triseratops = { version = "0.0.3", optional = true }
5151
aoide-core.workspace = true
5252

5353
[dev-dependencies]
54-
tempfile = "3.16.0"
54+
tempfile = "3.17.0"
5555

5656
[features]
5757
default = ["all"]

file-collection-app/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ workspace = true
1717
[dependencies]
1818
anyhow.workspace = true
1919
directories = "6.0.0"
20-
discro = "0.32.0"
20+
discro = "0.33.0"
2121
itertools = "0.14.0"
2222
env_logger = "0.11.6"
2323
url.workspace = true

websrv/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ workspace = true
1717
[dependencies]
1818
anyhow.workspace = true
1919
directories = "6.0.0"
20-
discro = { version = "0.32.0", features = ["tokio"] }
20+
discro = { version = "0.33.0", features = ["tokio"] }
2121
dotenvy = "0.15.7"
2222
log = { version = "0.4.25", features = ["release_max_level_debug"] }
2323
parking_lot = "0.12.3"

0 commit comments

Comments
 (0)