diff --git a/Cargo.lock b/Cargo.lock index 3665371..8bc9908 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -27,7 +27,7 @@ dependencies = [ [[package]] name = "base64" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -131,9 +131,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "mesalink" -version = "0.7.2" +version = "0.8.0" dependencies = [ - "base64 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "enum_to_u8_slice_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -220,7 +220,7 @@ name = "rustls" version = "0.15.0" source = "git+https://github.com/mesalock-linux/rustls?tag=v0.8.0#514934a0aba0b1d2818f47849ba34bf023c4ecda" dependencies = [ - "base64 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -403,7 +403,7 @@ dependencies = [ [metadata] "checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e" "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" -"checksum base64 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "621fc7ecb8008f86d7fb9b95356cd692ce9514b80a86d85b397f32a22da7b9e2" +"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" "checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" diff --git a/Cargo.toml b/Cargo.toml index 2251f4d..db4d393 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mesalink" -version = "0.7.2" +version = "0.8.0" edition = "2018" authors = ["The MesaLink Project Contributors"] license = "BSD-3-Clause" diff --git a/configure.ac b/configure.ac index c9d66c4..18586d0 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,7 @@ LT_PREREQ([2.2]) LT_INIT LT_LANG([C]) -MESALINK_LIBRARY_VERSION=11:0:0 +MESALINK_LIBRARY_VERSION=12:0:0 # | | | # +------+ | +---+ # | | | diff --git a/src/libcrypto/bio.rs b/src/libcrypto/bio.rs index 157fa46..55a674b 100644 --- a/src/libcrypto/bio.rs +++ b/src/libcrypto/bio.rs @@ -60,7 +60,6 @@ impl<'a> DerefMut for MesalinkBioInner<'a> { } } - /// A structure used for the implementation of new BIO types #[allow(non_camel_case_types)] #[repr(C)]