Bump typify from `fdfed7c` to `6cc08a7` (#534)

* Bump typify from `fdfed7c` to `6cc08a7`

Bumps [typify](https://github.com/oxidecomputer/typify) from `fdfed7c` to `6cc08a7`.
- [Commits](fdfed7c578...6cc08a71d3)

---
updated-dependencies:
- dependency-name: typify
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* update fixtures

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Adam H. Leventhal <ahl@oxide.computer>
This commit is contained in:
dependabot[bot] 2023-08-08 08:30:34 -07:00 committed by GitHub
parent dccb2fd5f7
commit 46d2be5eca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

6
Cargo.lock generated
View File

@ -2289,7 +2289,7 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]] [[package]]
name = "typify" name = "typify"
version = "0.0.13" version = "0.0.13"
source = "git+https://github.com/oxidecomputer/typify#fdfed7c5786e7f415ea618161c8f41912f670209" source = "git+https://github.com/oxidecomputer/typify#6cc08a71d32d57dfefad254aa0d186d82e29bc11"
dependencies = [ dependencies = [
"typify-impl", "typify-impl",
"typify-macro", "typify-macro",
@ -2298,7 +2298,7 @@ dependencies = [
[[package]] [[package]]
name = "typify-impl" name = "typify-impl"
version = "0.0.13" version = "0.0.13"
source = "git+https://github.com/oxidecomputer/typify#fdfed7c5786e7f415ea618161c8f41912f670209" source = "git+https://github.com/oxidecomputer/typify#6cc08a71d32d57dfefad254aa0d186d82e29bc11"
dependencies = [ dependencies = [
"heck", "heck",
"log", "log",
@ -2315,7 +2315,7 @@ dependencies = [
[[package]] [[package]]
name = "typify-macro" name = "typify-macro"
version = "0.0.13" version = "0.0.13"
source = "git+https://github.com/oxidecomputer/typify#fdfed7c5786e7f415ea618161c8f41912f670209" source = "git+https://github.com/oxidecomputer/typify#6cc08a71d32d57dfefad254aa0d186d82e29bc11"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -158,7 +158,7 @@ pub mod types {
where where
D: serde::Deserializer<'de>, D: serde::Deserializer<'de>,
{ {
Self::try_from(i64::deserialize(deserializer)?) Self::try_from(<i64>::deserialize(deserializer)?)
.map_err(|e| <D::Error as serde::de::Error>::custom(e.to_string())) .map_err(|e| <D::Error as serde::de::Error>::custom(e.to_string()))
} }
} }

View File

@ -158,7 +158,7 @@ pub mod types {
where where
D: serde::Deserializer<'de>, D: serde::Deserializer<'de>,
{ {
Self::try_from(i64::deserialize(deserializer)?) Self::try_from(<i64>::deserialize(deserializer)?)
.map_err(|e| <D::Error as serde::de::Error>::custom(e.to_string())) .map_err(|e| <D::Error as serde::de::Error>::custom(e.to_string()))
} }
} }

View File

@ -140,7 +140,7 @@ pub mod types {
where where
D: serde::Deserializer<'de>, D: serde::Deserializer<'de>,
{ {
Self::try_from(i64::deserialize(deserializer)?) Self::try_from(<i64>::deserialize(deserializer)?)
.map_err(|e| <D::Error as serde::de::Error>::custom(e.to_string())) .map_err(|e| <D::Error as serde::de::Error>::custom(e.to_string()))
} }
} }