diff --git a/Cargo.lock b/Cargo.lock index f8a0fb54..6d788b1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4628,9 +4628,9 @@ checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" [[package]] name = "serde" -version = "1.0.151" +version = "1.0.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0" +checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" dependencies = [ "serde_derive", ] @@ -4650,9 +4650,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.151" +version = "1.0.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "255abe9a125a985c05190d687b320c12f9b1f0b99445e608c21ba0782c719ad8" +checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" dependencies = [ "proc-macro2", "quote", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 3818271c..0b6572c7 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -17,7 +17,7 @@ http = "0.2.8" http-body = "0.4.5" mime = "0.3.16" rand = "0.8.5" -serde = "1.0.151" +serde = "1.0.152" serde_with = "2.1.0" serde_urlencoded = "0.7.1" serde_json = "1.0.91" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index eb2f1c6e..8c4a4332 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -20,7 +20,7 @@ schemars = { version = "0.8.11", features = ["url", "chrono"] } ulid = { version = "1.0.0", features = ["serde"] } url = { version = "2.3.1", features = ["serde"] } -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } serde_with = { version = "2.1.0", features = ["hex", "chrono"] } serde_json = "1.0.91" diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index c4917ab6..661e9bbc 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.23" thiserror = "1.0.38" -serde = "1.0.151" +serde = "1.0.152" url = { version = "2.3.1", features = ["serde"] } crc = "3.0.0" rand = "0.8.5" diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index dccb6602..ff3159b0 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" anyhow = "1.0.68" async-graphql = { version = "5.0.4", features = ["chrono", "url"] } chrono = "0.4.23" -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } thiserror = "1.0.38" tracing = "0.1.37" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index dffc4bfc..47dd2775 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -34,7 +34,7 @@ lettre = { version = "0.10.1", default-features = false, features = ["builder"] sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } # Various structure (de)serialization -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } serde_with = { version = "2.1.0", features = ["hex", "chrono"] } serde_json = "1.0.91" serde_urlencoded = "0.7.1" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 6701bf0e..b883a8e7 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -22,7 +22,7 @@ opentelemetry-http = "0.7.0" opentelemetry-semantic-conventions = "0.10.0" rustls = { version = "0.20.7", optional = true } rustls-native-certs = { version = "0.6.2", optional = true } -serde = "1.0.151" +serde = "1.0.152" serde_json = "1.0.91" serde_urlencoded = "0.7.1" thiserror = "1.0.38" @@ -36,7 +36,7 @@ webpki-roots = { version = "0.22.6", optional = true } [dev-dependencies] anyhow = "1.0.68" -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } tokio = { version = "1.23.0", 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 8bf4fdd0..3e742177 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -13,7 +13,7 @@ convert_case = "0.6.0" csv = "1.1.6" futures-util = "0.3.25" reqwest = { version = "0.11.13", features = ["blocking", "rustls-tls"], default-features = false } -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } tokio = { version = "1.23.0", features = ["full"] } tracing = "0.1.37" tracing-subscriber = "0.3.16" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 64f24c9c..3ec3a92c 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -20,7 +20,7 @@ rand = "0.8.5" rsa = "0.7.2" schemars = "0.8.11" sec1 = "0.3.0" -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" serde_with = { version = "2.1.0", features = ["base64"] } sha2 = { version = "0.10.6", features = ["oid"] } diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 5499c33d..2c7047e9 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.151" +serde = "1.0.152" serde_json = "1.0.91" language-tags = { version = "0.3.2", features = ["serde"] } url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index e29f4019..fcdae7f3 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -30,7 +30,7 @@ http = "0.2.8" once_cell = "1.16.0" mime = "0.3.16" rand = "0.8.5" -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" serde_urlencoded = "0.7.1" serde_with = "2.1.0" diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index aaaba3b5..396def1d 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.68" opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" thiserror = "1.0.38" tokio = { version = "1.23.0", features = ["io-util"] } diff --git a/crates/router/Cargo.toml b/crates/router/Cargo.toml index 58c08ee7..f381a75e 100644 --- a/crates/router/Cargo.toml +++ b/crates/router/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] axum = { version = "0.6.1", default-features = false } -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } serde_urlencoded = "0.7.1" url = "2.3.1" ulid = "1.0.0" diff --git a/crates/spa/Cargo.toml b/crates/spa/Cargo.toml index 30f369c2..aec7a856 100644 --- a/crates/spa/Cargo.toml +++ b/crates/spa/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" thiserror = "1.0.38" camino = { version = "1.1.1", features = ["serde1"] } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index c4ba719c..b0ed4c5e 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json", "uuid"] } chrono = { version = "0.4.23", features = ["serde"] } -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" thiserror = "1.0.38" tracing = "0.1.37" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 5354759b..de432dcd 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -13,7 +13,7 @@ anyhow = "1.0.68" thiserror = "1.0.38" tera = "1.17.1" -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" serde_urlencoded = "0.7.1"