diff --git a/Cargo.lock b/Cargo.lock index 6b3179e986dd23..75d3262b57390f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9174,7 +9174,6 @@ dependencies = [ "rustls 0.23.19", "solana-keypair", "solana-pubkey", - "solana-sdk", "solana-signer", "x509-parser", ] diff --git a/programs/sbf/Cargo.lock b/programs/sbf/Cargo.lock index 0c5445b59b8d0d..ea11ddc5be478f 100644 --- a/programs/sbf/Cargo.lock +++ b/programs/sbf/Cargo.lock @@ -7739,7 +7739,6 @@ dependencies = [ "rustls 0.23.19", "solana-keypair", "solana-pubkey", - "solana-sdk", "solana-signer", "x509-parser", ] diff --git a/svm/examples/Cargo.lock b/svm/examples/Cargo.lock index 807aa0fe60af3e..c84b71398d81a5 100644 --- a/svm/examples/Cargo.lock +++ b/svm/examples/Cargo.lock @@ -7084,7 +7084,6 @@ dependencies = [ "rustls 0.23.19", "solana-keypair", "solana-pubkey", - "solana-sdk", "solana-signer", "x509-parser", ] diff --git a/tls-utils/Cargo.toml b/tls-utils/Cargo.toml index e244e361b46ca0..a77bb65b1994a5 100644 --- a/tls-utils/Cargo.toml +++ b/tls-utils/Cargo.toml @@ -2,7 +2,6 @@ name = "solana-tls-utils" description = "Solana TLS utilities" documentation = "https://docs.rs/solana-tls-utils" -publish = false version = { workspace = true } authors = { workspace = true } repository = { workspace = true } @@ -14,7 +13,6 @@ edition = { workspace = true } rustls = { workspace = true, features = ["ring"] } solana-keypair = { workspace = true } solana-pubkey = { workspace = true } -solana-sdk = { workspace = true } solana-signer = { workspace = true } x509-parser = { workspace = true } diff --git a/tls-utils/src/quic_client_certificate.rs b/tls-utils/src/quic_client_certificate.rs index b49f27dba36352..24eea9cbc26a13 100644 --- a/tls-utils/src/quic_client_certificate.rs +++ b/tls-utils/src/quic_client_certificate.rs @@ -1,7 +1,7 @@ use { crate::new_dummy_x509_certificate, rustls::pki_types::{CertificateDer, PrivateKeyDer}, - solana_sdk::signature::Keypair, + solana_keypair::Keypair, }; pub struct QuicClientCertificate {