Skip to content

Commit 6e462d6

Browse files
committed
cargo fmt
1 parent 14ef1ce commit 6e462d6

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

src/lib.rs

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,33 @@ use std::fmt;
104104
use std::io;
105105
use std::result;
106106

107-
#[cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios", target_os = "watchos", target_os = "tvos")))]
107+
#[cfg(not(any(
108+
target_os = "macos",
109+
target_os = "windows",
110+
target_os = "ios",
111+
target_os = "watchos",
112+
target_os = "tvos"
113+
)))]
108114
#[macro_use]
109115
extern crate log;
110-
#[cfg(any(target_os = "macos", target_os = "ios", target_os = "watchos", target_os = "tvos"))]
116+
#[cfg(any(
117+
target_os = "macos",
118+
target_os = "ios",
119+
target_os = "watchos",
120+
target_os = "tvos"
121+
))]
111122
#[path = "imp/security_framework.rs"]
112123
mod imp;
113124
#[cfg(target_os = "windows")]
114125
#[path = "imp/schannel.rs"]
115126
mod imp;
116-
#[cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios", target_os = "watchos", target_os = "tvos")))]
127+
#[cfg(not(any(
128+
target_os = "macos",
129+
target_os = "windows",
130+
target_os = "ios",
131+
target_os = "watchos",
132+
target_os = "tvos"
133+
)))]
117134
#[path = "imp/openssl.rs"]
118135
mod imp;
119136

0 commit comments

Comments
 (0)