fmt
This commit is contained in:
+1
-4
@@ -9,9 +9,6 @@
|
||||
#[macro_export]
|
||||
macro_rules! include_proto {
|
||||
($package: tt) => {
|
||||
include!(concat!(
|
||||
env!("OUT_DIR"),
|
||||
concat!("/", $package, ".rs")
|
||||
));
|
||||
include!(concat!(env!("OUT_DIR"), concat!("/", $package, ".rs")));
|
||||
};
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ use crate::transport::{Certificate, Identity};
|
||||
#[cfg(feature = "openssl")]
|
||||
use openssl1::{
|
||||
pkey::PKey,
|
||||
ssl::{SslAcceptor, SslConnector, SslMethod, select_next_proto, AlpnError},
|
||||
ssl::{select_next_proto, AlpnError, SslAcceptor, SslConnector, SslMethod},
|
||||
x509::X509,
|
||||
};
|
||||
use std::{fmt, sync::Arc};
|
||||
|
||||
Reference in New Issue
Block a user