diff --git a/crates/ruma-client/Cargo.toml b/crates/ruma-client/Cargo.toml index 46d9760e..7a9d5a5e 100644 --- a/crates/ruma-client/Cargo.toml +++ b/crates/ruma-client/Cargo.toml @@ -37,7 +37,7 @@ futures-core = "0.3.8" futures-lite = { version = "1.11.3", optional = true } http = "0.2.2" hyper = { version = "0.14.2", optional = true, features = ["client", "http1", "http2", "tcp"] } -hyper-rustls-crate = { package = "hyper-rustls", version = "0.22.1", optional = true, default-features = false } +hyper-rustls-crate = { package = "hyper-rustls", version = "0.23.0", optional = true, default-features = false } hyper-tls = { version = "0.5.0", optional = true } isahc-crate = { package = "isahc", version = "1.3.1", optional = true } reqwest = { version = "0.11.4", optional = true, default-features = false } diff --git a/crates/ruma-common/Cargo.toml b/crates/ruma-common/Cargo.toml index 88d02e8d..4f5b08f9 100644 --- a/crates/ruma-common/Cargo.toml +++ b/crates/ruma-common/Cargo.toml @@ -53,7 +53,7 @@ indoc = { version = "1.0", optional = true } itoa = "1.0.1" js_int = { version = "0.2.0", features = ["serde"] } percent-encoding = "2.1.0" -pulldown-cmark = { version = "0.8", default-features = false, optional = true } +pulldown-cmark = { version = "0.9.1", default-features = false, optional = true } rand_crate = { package = "rand", version = "0.8.3", optional = true } ruma-identifiers-validation = { version = "0.7.0", path = "../ruma-identifiers-validation", default-features = false } ruma-macros = { version = "=0.1.0", path = "../ruma-macros" } @@ -62,7 +62,7 @@ serde_json = { version = "1.0.64", features = ["raw_value"] } thiserror = { version = "1.0.26", optional = true } tracing = "0.1.25" url = "2.2.2" -uuid = { version = "0.8.2", optional = true, features = ["v4"] } +uuid = { version = "1.0.0", optional = true, features = ["v4"] } wildmatch = "2.0.0" [dev-dependencies] diff --git a/crates/ruma-common/src/identifiers/client_secret.rs b/crates/ruma-common/src/identifiers/client_secret.rs index 87e6fe22..5920b610 100644 --- a/crates/ruma-common/src/identifiers/client_secret.rs +++ b/crates/ruma-common/src/identifiers/client_secret.rs @@ -24,7 +24,7 @@ impl ClientSecret { #[allow(clippy::new_ret_no_self)] pub fn new() -> OwnedClientSecret { let id = uuid::Uuid::new_v4(); - ClientSecret::from_borrowed(&id.to_simple().to_string()).to_owned() + ClientSecret::from_borrowed(&id.simple().to_string()).to_owned() } } diff --git a/crates/ruma-common/src/identifiers/transaction_id.rs b/crates/ruma-common/src/identifiers/transaction_id.rs index b3a71fa2..a524c6e8 100644 --- a/crates/ruma-common/src/identifiers/transaction_id.rs +++ b/crates/ruma-common/src/identifiers/transaction_id.rs @@ -21,6 +21,6 @@ impl TransactionId { #[allow(clippy::new_ret_no_self)] pub fn new() -> OwnedTransactionId { let id = uuid::Uuid::new_v4(); - Self::from_borrowed(&id.to_simple().to_string()).to_owned() + Self::from_borrowed(&id.simple().to_string()).to_owned() } } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index fb48055b..50918ad8 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -14,5 +14,5 @@ semver = { version = "1.0.6", features = ["serde"], optional = true } serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.79" toml = "0.5.8" -toml_edit = { version = "0.13.4", optional = true } +toml_edit = { version = "0.14.2", optional = true } xshell = "0.1.17"