diff --git a/Cargo.lock b/Cargo.lock index 03c824c..a2bbd02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3281,9 +3281,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.137" +version = "1.0.138" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b" +checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949" dependencies = [ "indexmap 2.7.1", "itoa", diff --git a/notifico-app/Cargo.toml b/notifico-app/Cargo.toml index dbce647..69b2adc 100644 --- a/notifico-app/Cargo.toml +++ b/notifico-app/Cargo.toml @@ -31,7 +31,7 @@ multimap = "0.10.0" rust-embed = { version = "8.5.0", features = ["mime-guess"] } sea-orm = { workspace = true } serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.134" +serde_json = "1.0.138" thiserror = "2.0.11" tokio = { workspace = true } tower-http = { version = "0.6.2", features = ["cors"] } diff --git a/notifico-core/Cargo.toml b/notifico-core/Cargo.toml index ac97b93..e0873a6 100644 --- a/notifico-core/Cargo.toml +++ b/notifico-core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] async-trait = "0.1.84" serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.134" +serde_json = "1.0.138" uuid = { workspace = true } tracing = "0.1.41" tokio = { workspace = true } diff --git a/notifico-template/Cargo.toml b/notifico-template/Cargo.toml index 82c1d6a..04c2b82 100644 --- a/notifico-template/Cargo.toml +++ b/notifico-template/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" notifico-core = { path = "../notifico-core" } minijinja = { version = "2.5.0", default-features = false, features = ["builtins", "unicode", "serde", "debug", "urlencode", "speedups"] } serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.134" +serde_json = "1.0.138" async-trait = "0.1.84" tracing = "0.1.41" uuid = { workspace = true } diff --git a/notificox/Cargo.toml b/notificox/Cargo.toml index 2290dd2..37436c1 100644 --- a/notificox/Cargo.toml +++ b/notificox/Cargo.toml @@ -10,7 +10,7 @@ notifico-transports = { path = "../notifico-transports" } notifico-attachment = { path = "../notifico-attachment" } # Other deps serde = { version = "1.0.217", features = ["derive"] } -serde_json = { version = "1.0.134", features = ["preserve_order"] } +serde_json = { version = "1.0.138", features = ["preserve_order"] } tokio = { workspace = true } clap = { workspace = true } json5 = "0.4.1" diff --git a/transports/notifico-gotify/Cargo.toml b/transports/notifico-gotify/Cargo.toml index 225e208..9c1a8dd 100644 --- a/transports/notifico-gotify/Cargo.toml +++ b/transports/notifico-gotify/Cargo.toml @@ -7,6 +7,6 @@ edition = "2021" notifico-core = { path = "../../notifico-core" } reqwest = { workspace = true } url = { workspace = true } -serde_json = "1.0.134" +serde_json = "1.0.138" serde = { version = "1.0.217", features = ["derive"] } async-trait = "0.1.84" diff --git a/transports/notifico-ntfy/Cargo.toml b/transports/notifico-ntfy/Cargo.toml index e2fe995..50c5c3b 100644 --- a/transports/notifico-ntfy/Cargo.toml +++ b/transports/notifico-ntfy/Cargo.toml @@ -9,6 +9,6 @@ notifico-attachment = { path = "../../notifico-attachment" } reqwest = { workspace = true } url = { workspace = true } serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.134" +serde_json = "1.0.138" async-trait = "0.1.84" base64 = "0.22.1" diff --git a/transports/notifico-smpp/Cargo.toml b/transports/notifico-smpp/Cargo.toml index 3d994a5..4de8347 100644 --- a/transports/notifico-smpp/Cargo.toml +++ b/transports/notifico-smpp/Cargo.toml @@ -11,7 +11,7 @@ tracing = "0.1.41" notifico-core = { path = "../../notifico-core" } serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.134" +serde_json = "1.0.138" async-trait = "0.1.84" futures-util = "0.3.31" url = "2.5.4" diff --git a/transports/notifico-smtp/Cargo.toml b/transports/notifico-smtp/Cargo.toml index e57c5f2..bd8f167 100644 --- a/transports/notifico-smtp/Cargo.toml +++ b/transports/notifico-smtp/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] async-trait = "0.1.84" -serde_json = "1.0.134" +serde_json = "1.0.138" tracing = "0.1.41" lettre = { version = "0.11.11", default-features = false, features = [ "smtp-transport", "pool", "hostname", "builder", diff --git a/transports/notifico-telegram/Cargo.toml b/transports/notifico-telegram/Cargo.toml index f91ad11..e7a3033 100644 --- a/transports/notifico-telegram/Cargo.toml +++ b/transports/notifico-telegram/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] async-trait = "0.1.84" serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.134" +serde_json = "1.0.138" reqwest = { workspace = true } notifico-core = { path = "../../notifico-core" } diff --git a/transports/notifico-whatsapp/Cargo.toml b/transports/notifico-whatsapp/Cargo.toml index bab2afc..a3ae157 100644 --- a/transports/notifico-whatsapp/Cargo.toml +++ b/transports/notifico-whatsapp/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] serde = { version = "1.0.217", features = ["derive"] } uuid = { workspace = true } -serde_json = "1.0.134" +serde_json = "1.0.138" async-trait = "0.1.84" reqwest = { workspace = true } tracing = "0.1.41"