Loading openssl-sys/src/lib.rs +1 −1 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ #![recursion_limit = "128"] // configure fixed limit across all rust versions extern crate libc; pub use libc::*; pub use libc::c_int; #[cfg(feature = "unstable_boringssl")] extern crate bssl_sys; Loading openssl/src/bn.rs +1 −1 Original line number Diff line number Diff line Loading @@ -1229,7 +1229,7 @@ impl Ord for BigNumRef { impl PartialOrd for BigNum { fn partial_cmp(&self, oth: &BigNum) -> Option<Ordering> { self.deref().partial_cmp(oth.deref()) Some(self.cmp(oth)) } } Loading openssl/src/x509/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -832,7 +832,7 @@ impl Ord for X509 { impl PartialOrd for X509 { fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> { X509Ref::partial_cmp(self, other) Some(self.cmp(other)) } } Loading systest/Cargo.toml +1 −1 Original line number Diff line number Diff line Loading @@ -9,7 +9,7 @@ libc = "0.2" openssl-sys = { path = "../openssl-sys" } [build-dependencies] ctest2 = "0.4" ctest2 = "0.4.7" [features] vendored = ['openssl-sys/vendored'] Loading Loading
openssl-sys/src/lib.rs +1 −1 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ #![recursion_limit = "128"] // configure fixed limit across all rust versions extern crate libc; pub use libc::*; pub use libc::c_int; #[cfg(feature = "unstable_boringssl")] extern crate bssl_sys; Loading
openssl/src/bn.rs +1 −1 Original line number Diff line number Diff line Loading @@ -1229,7 +1229,7 @@ impl Ord for BigNumRef { impl PartialOrd for BigNum { fn partial_cmp(&self, oth: &BigNum) -> Option<Ordering> { self.deref().partial_cmp(oth.deref()) Some(self.cmp(oth)) } } Loading
openssl/src/x509/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -832,7 +832,7 @@ impl Ord for X509 { impl PartialOrd for X509 { fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> { X509Ref::partial_cmp(self, other) Some(self.cmp(other)) } } Loading
systest/Cargo.toml +1 −1 Original line number Diff line number Diff line Loading @@ -9,7 +9,7 @@ libc = "0.2" openssl-sys = { path = "../openssl-sys" } [build-dependencies] ctest2 = "0.4" ctest2 = "0.4.7" [features] vendored = ['openssl-sys/vendored'] Loading