Closed stephaneyfx closed 3 years ago
This looks like a great change, in terms of version bumping, the reqwest::Response
is currently exposed via the VaultResponse
error. Even though that's the only place that I expect it's visible, I suspect it should get a major version bump so I think that I'll hold off on a release until https://github.com/ChrisMacNaughton/vault-rs/pull/44 lands as well.
Thank you for the quick merge and publication!
This addresses vulnerability RUSTSEC-2021-0020 reported by cargo-audit.
I have only updated to
reqwest 0.10
and not0.11
because the latter depends ontokio 1
and the async ecosystem hasn't fully migrated yet, so it seems useful to have a version supportingtokio 0.2
. Maybehashicorp_vault 1.2
could usetokio 0.2
andhashicorp_vault 1.3
could switch totokio 1
? -- Note that I haven't checked if a minor or major bump should be done; I'd thinktokio
is not exposed by this crate because of its use of the blockingreqwest
client.Thank you.