Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Jul 31, 2024
1 parent 9d97dd4 commit 6673647
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/hash/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
use borsh::{BorshDeserialize, BorshSchema, BorshSerialize};
#[cfg(any(feature = "std", target_arch = "wasm32"))]
extern crate std;
#[cfg(any(feature = "borsh", target_arch = "wasm32"))]
use std::string::ToString;
#[cfg(feature = "bytemuck")]
use bytemuck_derive::{Pod, Zeroable};
#[cfg(feature = "serde")]
use serde_derive::{Deserialize, Serialize};
#[cfg(any(feature = "borsh", target_arch = "wasm32"))]
use std::string::ToString;
use {
core::{convert::TryFrom, fmt, mem, str::FromStr},
solana_sanitize::Sanitize,
Expand Down

0 comments on commit 6673647

Please sign in to comment.