diff --git a/Cargo.lock b/Cargo.lock index e49b10f..77ec30b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2188,7 +2188,7 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" [[package]] name = "typify" version = "0.0.12" -source = "git+https://github.com/oxidecomputer/typify#c868ddcbaa07716d4cbd01312f723921bf94bce8" +source = "git+https://github.com/oxidecomputer/typify#28883bdb3868fd1f5c02d25bc5d5bd7ce7d9cc30" dependencies = [ "typify-impl", "typify-macro", @@ -2197,7 +2197,7 @@ dependencies = [ [[package]] name = "typify-impl" version = "0.0.12" -source = "git+https://github.com/oxidecomputer/typify#c868ddcbaa07716d4cbd01312f723921bf94bce8" +source = "git+https://github.com/oxidecomputer/typify#28883bdb3868fd1f5c02d25bc5d5bd7ce7d9cc30" dependencies = [ "heck", "log", @@ -2214,7 +2214,7 @@ dependencies = [ [[package]] name = "typify-macro" version = "0.0.12" -source = "git+https://github.com/oxidecomputer/typify#c868ddcbaa07716d4cbd01312f723921bf94bce8" +source = "git+https://github.com/oxidecomputer/typify#28883bdb3868fd1f5c02d25bc5d5bd7ce7d9cc30" dependencies = [ "proc-macro2", "quote", diff --git a/progenitor-impl/src/method.rs b/progenitor-impl/src/method.rs index 646ed33..82ad44b 100644 --- a/progenitor-impl/src/method.rs +++ b/progenitor-impl/src/method.rs @@ -1316,9 +1316,7 @@ impl Generator { .ok()? .details() { - typify::TypeDetails::Array(item) => { - Some(DropshotPagination { item }) - } + typify::TypeDetails::Vec(item) => Some(DropshotPagination { item }), _ => None, } }