From 9f8344b54faf4f027c55dd02427fea5369529f11 Mon Sep 17 00:00:00 2001 From: Will Kennedy Date: Wed, 14 Aug 2024 09:26:03 -0400 Subject: [PATCH] Remove unused `std::u128` import. Eliminated the unnecessary import of `std::u128` from `deserialize_adapter.rs`, making the code cleaner and more efficient. This change does not affect the functionality but enhances code readability and maintainability. --- borsh-serde-adapter/src/deserialize_adapter.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/borsh-serde-adapter/src/deserialize_adapter.rs b/borsh-serde-adapter/src/deserialize_adapter.rs index cc961f0..2e3ac1f 100644 --- a/borsh-serde-adapter/src/deserialize_adapter.rs +++ b/borsh-serde-adapter/src/deserialize_adapter.rs @@ -1,6 +1,5 @@ use std::collections::HashMap; use std::io::{Error}; -use std::u128; use borsh::schema::{BorshSchemaContainer, Definition, Fields}; use borsh::{BorshDeserialize};