diff --git a/postgres-openssl/src/lib.rs b/postgres-openssl/src/lib.rs index 9fc50b89..837663fe 100644 --- a/postgres-openssl/src/lib.rs +++ b/postgres-openssl/src/lib.rs @@ -73,7 +73,8 @@ use tokio_postgres::tls::{ChannelBinding, TlsConnect}; #[cfg(test)] mod test; -type ConfigCallback = dyn Fn(&mut ConnectConfiguration, &str) -> Result<(), ErrorStack> + Sync + Send; +type ConfigCallback = + dyn Fn(&mut ConnectConfiguration, &str) -> Result<(), ErrorStack> + Sync + Send; /// A `MakeTlsConnect` implementation using the `openssl` crate. ///