use arrayvec for integer deserialization buffer

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-11-25 01:01:39 +00:00
parent 6f1d50dda3
commit 343ec59a8b
2 changed files with 26 additions and 5 deletions

View file

@ -35,6 +35,8 @@ pub enum Error {
// third-party
#[error(transparent)]
CapacityError(#[from] arrayvec::CapacityError),
#[error(transparent)]
CargoToml(#[from] cargo_toml::Error),
#[error(transparent)]
Clap(#[from] clap::error::Error),