Upgrade some dependencies

This commit is contained in:
Jonas Platte 2022-04-20 16:58:48 +02:00
parent cbf71d848a
commit 4365a51e2a
No known key found for this signature in database
GPG Key ID: BBA95679259D342F
5 changed files with 6 additions and 6 deletions

View File

@ -37,7 +37,7 @@ futures-core = "0.3.8"
futures-lite = { version = "1.11.3", optional = true } futures-lite = { version = "1.11.3", optional = true }
http = "0.2.2" http = "0.2.2"
hyper = { version = "0.14.2", optional = true, features = ["client", "http1", "http2", "tcp"] } 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 } hyper-tls = { version = "0.5.0", optional = true }
isahc-crate = { package = "isahc", version = "1.3.1", optional = true } isahc-crate = { package = "isahc", version = "1.3.1", optional = true }
reqwest = { version = "0.11.4", optional = true, default-features = false } reqwest = { version = "0.11.4", optional = true, default-features = false }

View File

@ -53,7 +53,7 @@ indoc = { version = "1.0", optional = true }
itoa = "1.0.1" itoa = "1.0.1"
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
percent-encoding = "2.1.0" 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 } 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-identifiers-validation = { version = "0.7.0", path = "../ruma-identifiers-validation", default-features = false }
ruma-macros = { version = "=0.1.0", path = "../ruma-macros" } 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 } thiserror = { version = "1.0.26", optional = true }
tracing = "0.1.25" tracing = "0.1.25"
url = "2.2.2" 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" wildmatch = "2.0.0"
[dev-dependencies] [dev-dependencies]

View File

@ -24,7 +24,7 @@ impl ClientSecret {
#[allow(clippy::new_ret_no_self)] #[allow(clippy::new_ret_no_self)]
pub fn new() -> OwnedClientSecret { pub fn new() -> OwnedClientSecret {
let id = uuid::Uuid::new_v4(); 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()
} }
} }

View File

@ -21,6 +21,6 @@ impl TransactionId {
#[allow(clippy::new_ret_no_self)] #[allow(clippy::new_ret_no_self)]
pub fn new() -> OwnedTransactionId { pub fn new() -> OwnedTransactionId {
let id = uuid::Uuid::new_v4(); 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()
} }
} }

View File

@ -14,5 +14,5 @@ semver = { version = "1.0.6", features = ["serde"], optional = true }
serde = { version = "1.0.136", features = ["derive"] } serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79" serde_json = "1.0.79"
toml = "0.5.8" toml = "0.5.8"
toml_edit = { version = "0.13.4", optional = true } toml_edit = { version = "0.14.2", optional = true }
xshell = "0.1.17" xshell = "0.1.17"