Skip to content
Snippets Groups Projects
Verified Commit 9a656186 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Updated dependencies again

parent 109394e7
Branches main
No related tags found
No related merge requests found
......@@ -247,7 +247,7 @@ dependencies = [
"diesel_derives",
"pq-sys",
"r2d2",
"uuid 0.8.1",
"uuid",
]
[[package]]
......@@ -723,7 +723,7 @@ dependencies = [
"serde",
"serde_json",
"url 2.2.0",
"uuid 0.7.4",
"uuid",
]
[[package]]
......@@ -1480,19 +1480,13 @@ dependencies = [
[[package]]
name = "uuid"
version = "0.7.4"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
checksum = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11"
dependencies = [
"serde",
]
[[package]]
name = "uuid"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11"
[[package]]
name = "vcpkg"
version = "0.2.11"
......
......@@ -33,5 +33,5 @@ version = "1.0.118"
features = ["derive"]
[dependencies.uuid]
version = "0.7.4"
version = "0.8.1"
features = ["serde"]
......@@ -11,7 +11,7 @@ impl ParamUuid {
}
impl FromParam<'_> for ParamUuid {
type Error = uuid::parser::ParseError;
type Error = uuid::Error;
fn from_param(param: &RawStr) -> Result<Self, Self::Error> {
return Ok(ParamUuid(Uuid::parse_str(param.as_str())?));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment