lib: support Rust 1.41 as MSRV

This commit is contained in:
Matt Bilker 2022-03-10 23:22:00 +00:00
parent 388e7c29d7
commit 581e457289
No known key found for this signature in database
GPG Key ID: 69ADF8AEB6C8B5D1

View File

@ -238,7 +238,7 @@ impl fmt::Debug for VgpuConfig {
) )
.field("encoder_capacity", &HexFormat(self.encoder_capacity)) .field("encoder_capacity", &HexFormat(self.encoder_capacity))
.field("bar1_length", &HexFormat(self.bar1_length)) .field("bar1_length", &HexFormat(self.bar1_length))
.field("blob", &StraightFormat(&self.blob)) .field("blob", &StraightFormat(&self.blob[..]))
.field("license_type", &CStrFormat(&self.license_type)) .field("license_type", &CStrFormat(&self.license_type))
.finish() .finish()
} }