Upgrade some dependencies
This commit is contained in:
parent
cbf71d848a
commit
4365a51e2a
@ -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 }
|
||||
|
@ -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]
|
||||
|
@ -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()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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()
|
||||
}
|
||||
}
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user