diff --git a/Cargo.lock b/Cargo.lock index 7cb22747..57ee1415 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3950,9 +3950,9 @@ checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711" [[package]] name = "serde" -version = "1.0.143" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53e8e5d5b70924f74ff5c6d64d9a5acd91422117c60f48c4e07855238a254553" +checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860" dependencies = [ "serde_derive", ] @@ -3972,9 +3972,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.143" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3d8e8de557aee63c26b85b947f5e59b690d0454c753f3adeb5cd7835ab88391" +checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00" dependencies = [ "proc-macro2", "quote", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index d53c7ad5..f06c87b5 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -18,7 +18,7 @@ http = "0.2.8" http-body = "0.4.5" mime = "0.3.16" rand = "0.8.5" -serde = "1.0.142" +serde = "1.0.144" serde_with = "2.0.0" serde_urlencoded = "0.7.1" serde_json = "1.0.83" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index eb7183cf..2b40a0b4 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -18,7 +18,7 @@ figment = { version = "0.10.6", features = ["env", "yaml", "test"] } chrono = { version = "0.4.22", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] } -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } serde_with = { version = "2.0.0", features = ["hex", "chrono"] } serde_json = "1.0.83" sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] } diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index 1ca6cd72..78ac4127 100644 --- a/crates/data-model/Cargo.toml +++ b/crates/data-model/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] chrono = "0.4.22" thiserror = "1.0.32" -serde = "1.0.142" +serde = "1.0.144" url = { version = "2.2.2", features = ["serde"] } crc = "3.0.0" rand = "0.8.5" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 815c4a4a..c73a53d1 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -31,7 +31,7 @@ lettre = { version = "0.10.1", default-features = false, features = ["builder"] sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] } # Various structure (de)serialization -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } serde_with = { version = "2.0.0", features = ["hex", "chrono"] } serde_json = "1.0.83" serde_urlencoded = "0.7.1" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 15efc43a..9fe11e5d 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -19,7 +19,7 @@ opentelemetry = "0.17.0" opentelemetry-http = "0.6.0" opentelemetry-semantic-conventions = "0.9.0" rustls = "0.20.6" -serde = "1.0.142" +serde = "1.0.144" serde_json = "1.0.83" serde_urlencoded = "0.7.1" thiserror = "1.0.32" @@ -31,7 +31,7 @@ tracing-opentelemetry = "0.17.4" [dev-dependencies] anyhow = "1.0.62" -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } tokio = { version = "1.20.1", features = ["macros", "rt"] } tower = { version = "0.4.13", features = ["util"] } diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 9f409822..234af08b 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -12,7 +12,7 @@ convert_case = "0.5.0" csv = "1.1.6" futures-util = "0.3.23" reqwest = { version = "0.11.11", features = ["blocking", "rustls-tls"], default-features = false } -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } tokio = { version = "1.20.1", features = ["full"] } tracing = "0.1.36" tracing-subscriber = "0.3.15" diff --git a/crates/iana/Cargo.toml b/crates/iana/Cargo.toml index c8a9f8a1..b5a51ec0 100644 --- a/crates/iana/Cargo.toml +++ b/crates/iana/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" license = "Apache-2.0" [dependencies] -serde = "1.0.142" +serde = "1.0.144" schemars = "0.8.10" parse-display = "0.5.5" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 0dc98741..e662cd2c 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -24,7 +24,7 @@ rand = "0.8.5" rsa = "0.7.0-pre" schemars = "0.8.10" sec1 = "0.3.0" -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.83" serde_with = { version = "2.0.0", features = ["base64"] } sha2 = "0.10.2" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 6efff319..1ed73e6c 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] http = "0.2.8" -serde = "1.0.142" +serde = "1.0.144" serde_json = "1.0.83" language-tags = { version = "0.3.2", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] } diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index 3e8d2a52..0c484f72 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.62" opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.83" thiserror = "1.0.32" tokio = { version = "1.20.1", features = ["io-util", "rt"] } diff --git a/crates/router/Cargo.toml b/crates/router/Cargo.toml index fe1c8a49..798e864e 100644 --- a/crates/router/Cargo.toml +++ b/crates/router/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] axum = { version = "0.5.15", default-features = false } -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } serde_urlencoded = "0.7.1" serde_with = "2.0.0" url = "2.2.2" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 05ef231f..3297f830 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" tokio = "1.20.1" sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] } chrono = { version = "0.4.22", features = ["serde"] } -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.83" thiserror = "1.0.32" anyhow = "1.0.62" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 6f02f03d..03010b82 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -16,7 +16,7 @@ anyhow = "1.0.62" thiserror = "1.0.32" tera = "1.17.0" -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.83" serde_urlencoded = "0.7.1"