Skip to content

Commit e811b2a

Browse files
committed
crypto_provider: tidy imports
1 parent e71268d commit e811b2a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/crypto_provider.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1+
use std::slice;
2+
use std::sync::Arc;
3+
14
use libc::size_t;
25
use pki_types::pem::PemObject;
36
use pki_types::PrivateKeyDer;
7+
48
#[cfg(feature = "aws-lc-rs")]
59
use rustls::crypto::aws_lc_rs;
610
#[cfg(feature = "ring")]
711
use rustls::crypto::ring;
812
use rustls::crypto::CryptoProvider;
913
use rustls::sign::SigningKey;
1014
use rustls::SupportedCipherSuite;
11-
use std::slice;
12-
use std::sync::Arc;
1315

1416
use crate::cipher::rustls_supported_ciphersuite;
1517
use crate::error::map_error;

0 commit comments

Comments
 (0)