From 581e4572894b2d766b60a949c230a8febb6ef506 Mon Sep 17 00:00:00 2001 From: Matt Bilker Date: Thu, 10 Mar 2022 23:22:00 +0000 Subject: [PATCH] lib: support Rust 1.41 as MSRV --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index e178ab4..0acee71 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -238,7 +238,7 @@ impl fmt::Debug for VgpuConfig { ) .field("encoder_capacity", &HexFormat(self.encoder_capacity)) .field("bar1_length", &HexFormat(self.bar1_length)) - .field("blob", &StraightFormat(&self.blob)) + .field("blob", &StraightFormat(&self.blob[..])) .field("license_type", &CStrFormat(&self.license_type)) .finish() }