Loading openssl-sys/build/cfgs.rs +0 −1 Original line number Diff line number Diff line #[allow(clippy::inconsistent_digit_grouping)] pub fn get(openssl_version: Option<u64>, libressl_version: Option<u64>) -> Vec<&'static str> { let mut cfgs = vec![]; Loading openssl-sys/build/main.rs +1 −1 Original line number Diff line number Diff line #![allow(clippy::inconsistent_digit_grouping)] #![allow(clippy::inconsistent_digit_grouping, clippy::unusual_byte_groupings)] extern crate autocfg; extern crate cc; Loading openssl/Cargo.toml +3 −2 Original line number Diff line number Diff line Loading @@ -8,6 +8,7 @@ repository = "https://github.com/sfackler/rust-openssl" readme = "README.md" keywords = ["crypto", "tls", "ssl", "dtls"] categories = ["cryptography", "api-bindings"] edition = "2018" # these are deprecated and don't do anything anymore [features] Loading @@ -16,7 +17,7 @@ v102 = [] v110 = [] v111 = [] vendored = ['openssl-sys/vendored'] vendored = ['ffi/vendored'] [dependencies] bitflags = "1.0" Loading @@ -25,7 +26,7 @@ foreign-types = "0.3.1" libc = "0.2" once_cell = "1.5.2" openssl-sys = { version = "0.9.60", path = "../openssl-sys" } ffi = { package = "openssl-sys", version = "0.9.60", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3" Loading openssl/build.rs +1 −1 Original line number Diff line number Diff line #![allow(clippy::inconsistent_digit_grouping)] #![allow(clippy::inconsistent_digit_grouping, clippy::unusual_byte_groupings)] use std::env; Loading openssl/examples/mk_certs.rs +0 −2 Original line number Diff line number Diff line //! A program that generates ca certs, certs verified by the ca, and public //! and private keys. extern crate openssl; use openssl::asn1::Asn1Time; use openssl::bn::{BigNum, MsbOption}; use openssl::error::ErrorStack; Loading Loading
openssl-sys/build/cfgs.rs +0 −1 Original line number Diff line number Diff line #[allow(clippy::inconsistent_digit_grouping)] pub fn get(openssl_version: Option<u64>, libressl_version: Option<u64>) -> Vec<&'static str> { let mut cfgs = vec![]; Loading
openssl-sys/build/main.rs +1 −1 Original line number Diff line number Diff line #![allow(clippy::inconsistent_digit_grouping)] #![allow(clippy::inconsistent_digit_grouping, clippy::unusual_byte_groupings)] extern crate autocfg; extern crate cc; Loading
openssl/Cargo.toml +3 −2 Original line number Diff line number Diff line Loading @@ -8,6 +8,7 @@ repository = "https://github.com/sfackler/rust-openssl" readme = "README.md" keywords = ["crypto", "tls", "ssl", "dtls"] categories = ["cryptography", "api-bindings"] edition = "2018" # these are deprecated and don't do anything anymore [features] Loading @@ -16,7 +17,7 @@ v102 = [] v110 = [] v111 = [] vendored = ['openssl-sys/vendored'] vendored = ['ffi/vendored'] [dependencies] bitflags = "1.0" Loading @@ -25,7 +26,7 @@ foreign-types = "0.3.1" libc = "0.2" once_cell = "1.5.2" openssl-sys = { version = "0.9.60", path = "../openssl-sys" } ffi = { package = "openssl-sys", version = "0.9.60", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3" Loading
openssl/build.rs +1 −1 Original line number Diff line number Diff line #![allow(clippy::inconsistent_digit_grouping)] #![allow(clippy::inconsistent_digit_grouping, clippy::unusual_byte_groupings)] use std::env; Loading
openssl/examples/mk_certs.rs +0 −2 Original line number Diff line number Diff line //! A program that generates ca certs, certs verified by the ca, and public //! and private keys. extern crate openssl; use openssl::asn1::Asn1Time; use openssl::bn::{BigNum, MsbOption}; use openssl::error::ErrorStack; Loading