diff --git a/crates/ruma-macros/Cargo.toml b/crates/ruma-macros/Cargo.toml index dd417b9d..63d634b3 100644 --- a/crates/ruma-macros/Cargo.toml +++ b/crates/ruma-macros/Cargo.toml @@ -16,10 +16,10 @@ proc-macro = true [dependencies] once_cell = "1.13.0" -proc-macro-crate = "1.0.0" +proc-macro-crate = "2.0.0" proc-macro2 = "1.0.24" quote = "1.0.8" ruma-identifiers-validation = { workspace = true } serde = { workspace = true } syn = { version = "2.0.2", features = ["extra-traits", "full", "visit"] } -toml = { version = "0.7.1", default-features = false, features = ["parse"] } +toml = { version = "0.8.2", default-features = false, features = ["parse"] } diff --git a/crates/ruma-server-util/Cargo.toml b/crates/ruma-server-util/Cargo.toml index 1f6e37bf..c468ae14 100644 --- a/crates/ruma-server-util/Cargo.toml +++ b/crates/ruma-server-util/Cargo.toml @@ -19,7 +19,7 @@ rustdoc-args = ["--cfg", "docsrs"] headers = "0.3" ruma-common = { workspace = true } tracing = { workspace = true } -yap = "0.10.0" +yap = "0.11.0" [dev-dependencies] tracing-subscriber = "0.3.16" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 951a4f72..9829d8e4 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -14,6 +14,6 @@ isahc = { version = "1.7.0", features = ["json"] } semver = { version = "1.0.6", features = ["serde"], optional = true } serde = { workspace = true } serde_json = { workspace = true } -toml = { version = "0.7.1", default-features = false, features = ["parse"] } -toml_edit = { version = "0.19.1", optional = true } +toml = { version = "0.8.2", default-features = false, features = ["parse"] } +toml_edit = { version = "0.20.2", optional = true } xshell = "0.1.17"