Loading openssl-sys/src/lib.rs +1 −1 Original line number Diff line number Diff line #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] #![allow(dead_code)] #![feature(path, fs)] #![feature(path, path_ext)] #![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl-sys")] extern crate libc; Loading openssl/src/crypto/memcmp.rs +1 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,7 @@ mod tests { } #[test] #[should_fail] #[should_panic] fn test_diff_lens() { eq(&[], &[1]); } Loading openssl/src/lib.rs +2 −2 Original line number Diff line number Diff line #![feature(unsafe_destructor, core, io, std_misc, net, path, os, unique)] #![cfg_attr(test, feature(net, fs))] #![feature(unsafe_destructor, core, io, std_misc, net, path, unique)] #![cfg_attr(test, feature(net))] #![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl")] #[macro_use] Loading openssl/src/ssl/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -432,7 +432,7 @@ impl Ssl { fn get_error(&self, ret: c_int) -> LibSslError { let err = unsafe { ffi::SSL_get_error(*self.ssl, ret) }; match FromPrimitive::from_int(err as isize) { match FromPrimitive::from_isize(err as isize) { Some(err) => err, None => unreachable!() } Loading Loading
openssl-sys/src/lib.rs +1 −1 Original line number Diff line number Diff line #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] #![allow(dead_code)] #![feature(path, fs)] #![feature(path, path_ext)] #![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl-sys")] extern crate libc; Loading
openssl/src/crypto/memcmp.rs +1 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,7 @@ mod tests { } #[test] #[should_fail] #[should_panic] fn test_diff_lens() { eq(&[], &[1]); } Loading
openssl/src/lib.rs +2 −2 Original line number Diff line number Diff line #![feature(unsafe_destructor, core, io, std_misc, net, path, os, unique)] #![cfg_attr(test, feature(net, fs))] #![feature(unsafe_destructor, core, io, std_misc, net, path, unique)] #![cfg_attr(test, feature(net))] #![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl")] #[macro_use] Loading
openssl/src/ssl/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -432,7 +432,7 @@ impl Ssl { fn get_error(&self, ret: c_int) -> LibSslError { let err = unsafe { ffi::SSL_get_error(*self.ssl, ret) }; match FromPrimitive::from_int(err as isize) { match FromPrimitive::from_isize(err as isize) { Some(err) => err, None => unreachable!() } Loading