Skip to content

Commit 2e5d8fa

Browse files
committed
Clean-up dev dependencies
1 parent 1e6ed97 commit 2e5d8fa

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ derive_more = { version = "2.0.1", features = ["from", "into"] }
3333
futures = "0.3.31"
3434
# Transitive dependency
3535
# See https://forum.dfinity.org/t/module-imports-function-wbindgen-describe-from-wbindgen-placeholder-that-is-not-exported-by-the-runtime/11545/8
36-
getrandom = { version = "*", features = ["custom"] }
36+
getrandom = { version = "*", default-features = false, features = ["custom"] }
3737
hex = "0.4.3"
3838
http = "1.3.1"
3939
ic-agent = "0.40.1"
@@ -75,8 +75,6 @@ solana-pubkey = "3.0.0"
7575
solana-reward-info = "3.0.0"
7676
solana-rpc-client-api = "3.0.0"
7777
solana-rpc-client-nonce-utils = "3.0.0"
78-
# Transitive dependency of solana-transaction-status-client-types
79-
solana-sbpf = { version = "*", default-features = false, features = [] }
8078
solana-sdk-ids = "3.0.0"
8179
solana-signature = "3.1.0"
8280
solana-signer = "3.0.0"

examples/basic_solana/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ pub mod spl;
44
pub mod state;
55

66
use crate::state::{read_state, State};
7-
use candid::{CandidType, Deserialize, Principal};
7+
use candid::{CandidType, Principal};
8+
use serde::Deserialize;
89
use sol_rpc_client::{ed25519::Ed25519KeyId, IcRuntime, SolRpcClient};
910
use sol_rpc_types::{
1011
CommitmentLevel, ConsensusStrategy, RpcEndpoint, RpcSource, RpcSources, SolanaCluster,

0 commit comments

Comments
 (0)