Skip to content

Commit 81741bf

Browse files
committed
fmt and align deps
1 parent b4e6c19 commit 81741bf

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

interface/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ bytemuck = "1.20.0"
1515
num-derive = "0.4"
1616
num_enum = "0.7.4"
1717
num-traits = "0.2"
18-
solana-instruction = "2.2.1"
19-
solana-program-error = "2.2.1"
18+
solana-instruction = "2.3.0"
19+
solana-program-error = "2.2.2"
2020
solana-program-option = "2.2.1"
2121
solana-program-pack = "2.2.1"
22-
solana-pubkey = { version = "2.2.1", features = ["bytemuck"] }
22+
solana-pubkey = { version = "2.4.0", features = ["bytemuck"] }
2323
solana-sdk-ids = "2.2.1"
2424
thiserror = "2.0"
2525

interface/src/lib.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44

55
//! An ERC20-like Token program for the Solana blockchain
66
7-
use solana_program_error::{ProgramError, ProgramResult};
8-
use solana_pubkey::Pubkey;
7+
use {
8+
solana_program_error::{ProgramError, ProgramResult},
9+
solana_pubkey::Pubkey
10+
};
911

1012
pub mod error;
1113
pub mod instruction;

program/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ pub mod solana_program {
3737
}
3838
}
3939
use solana_program_error::ProgramError;
40-
4140
// Re-export spl_token_interface items
4241
pub use spl_token_interface::{check_id, check_program_account, id, ID};
4342

0 commit comments

Comments
 (0)