From 6e462d64be61b31ec32b91f097249403c0cbdc95 Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Mon, 11 Dec 2023 19:27:22 -0500 Subject: [PATCH] cargo fmt --- src/lib.rs | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index b44a50a..cc86502 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -104,16 +104,33 @@ use std::fmt; use std::io; use std::result; -#[cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios", target_os = "watchos", target_os = "tvos")))] +#[cfg(not(any( + target_os = "macos", + target_os = "windows", + target_os = "ios", + target_os = "watchos", + target_os = "tvos" +)))] #[macro_use] extern crate log; -#[cfg(any(target_os = "macos", target_os = "ios", target_os = "watchos", target_os = "tvos"))] +#[cfg(any( + target_os = "macos", + target_os = "ios", + target_os = "watchos", + target_os = "tvos" +))] #[path = "imp/security_framework.rs"] mod imp; #[cfg(target_os = "windows")] #[path = "imp/schannel.rs"] mod imp; -#[cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios", target_os = "watchos", target_os = "tvos")))] +#[cfg(not(any( + target_os = "macos", + target_os = "windows", + target_os = "ios", + target_os = "watchos", + target_os = "tvos" +)))] #[path = "imp/openssl.rs"] mod imp;