This commit is contained in:
Ivan Nikulin 2020-11-11 20:32:53 +00:00
parent f4096d8afd
commit fda73f4947
7 changed files with 13 additions and 14 deletions

View File

@ -1,12 +1,13 @@
[package] [package]
name = "boring-sys" name = "boring-sys"
version = "1.0.0" version = "1.0.1"
authors = ["Alex Crichton <alex@alexcrichton.com>", authors = ["Alex Crichton <alex@alexcrichton.com>",
"Steven Fackler <sfackler@gmail.com>", "Steven Fackler <sfackler@gmail.com>",
"Ivan Nikulin <ifaaan@gmail.com>"] "Ivan Nikulin <ifaaan@gmail.com>"]
license = "MIT" license = "MIT"
description = "FFI bindings to BoringSSL" description = "FFI bindings to BoringSSL"
repository = "https://github.com/inikulin/boring" repository = "https://github.com/inikulin/boring"
documentation = "https://docs.rs/boring-sys"
readme = "README.md" readme = "README.md"
categories = ["cryptography", "external-ffi-bindings"] categories = ["cryptography", "external-ffi-bindings"]
include = [ include = [

View File

@ -8,7 +8,6 @@
overflowing_literals, overflowing_literals,
unused_imports unused_imports
)] )]
#![doc(html_root_url = "https://docs.rs/boring-sys")]
extern crate libc; extern crate libc;

View File

@ -1,10 +1,11 @@
[package] [package]
name = "boring" name = "boring"
version = "1.0.0" version = "1.0.1"
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"] authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
license = "Apache-2.0" license = "Apache-2.0"
description = "BoringSSL bindings" description = "BoringSSL bindings"
repository = "https://github.com/inikulin/boring" repository = "https://github.com/inikulin/boring"
documentation = "https://docs.rs/boring"
readme = "README.md" readme = "README.md"
keywords = ["crypto", "tls", "ssl", "dtls"] keywords = ["crypto", "tls", "ssl", "dtls"]
categories = ["cryptography", "api-bindings"] categories = ["cryptography", "api-bindings"]
@ -14,7 +15,7 @@ bitflags = "1.0"
foreign-types = "0.3.1" foreign-types = "0.3.1"
lazy_static = "1" lazy_static = "1"
libc = "0.2" libc = "0.2"
boring-sys = { version = "1.0.0", path = "../boring-sys" } boring-sys = { version = "1.0.1", path = "../boring-sys" }
[dev-dependencies] [dev-dependencies]
tempdir = "0.3" tempdir = "0.3"

View File

@ -2,8 +2,6 @@
//! //!
//! This crate provides a safe interface to the BoringSSL cryptography library. //! This crate provides a safe interface to the BoringSSL cryptography library.
#![doc(html_root_url = "https://docs.rs/openssl/0.10")]
#[macro_use] #[macro_use]
extern crate bitflags; extern crate bitflags;
#[macro_use] #[macro_use]

View File

@ -1,11 +1,12 @@
[package] [package]
name = "hyper-boring" name = "hyper-boring"
version = "1.0.0" version = "1.0.1"
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"] authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
edition = "2018" edition = "2018"
description = "Hyper TLS support via BoringSSL" description = "Hyper TLS support via BoringSSL"
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
repository = "https://github.com/sfackler/hyper-boring" repository = "https://github.com/sfackler/hyper-boring"
documentation = "https://docs.rs/hyper-boring"
readme = "README.md" readme = "README.md"
exclude = ["test/*"] exclude = ["test/*"]
@ -21,10 +22,10 @@ http = "0.2"
hyper = { version = "0.13", default-features = false } hyper = { version = "0.13", default-features = false }
linked_hash_set = "0.1" linked_hash_set = "0.1"
once_cell = "1.0" once_cell = "1.0"
boring = { version = "1.0.0", path = "../boring" } boring = { version = "1.0.1", path = "../boring" }
boring-sys = { version = "1.0.0", path = "../boring-sys" } boring-sys = { version = "1.0.1", path = "../boring-sys" }
tokio = "0.2" tokio = "0.2"
tokio-boring = { version = "1.0.0", path = "../tokio-boring" } tokio-boring = { version = "1.0.1", path = "../tokio-boring" }
tower-layer = "0.3" tower-layer = "0.3"
[dev-dependencies] [dev-dependencies]

View File

@ -1,6 +1,5 @@
//! Hyper SSL support via OpenSSL. //! Hyper SSL support via OpenSSL.
#![warn(missing_docs)] #![warn(missing_docs)]
#![doc(html_root_url = "https://docs.rs/hyper-boring")]
use crate::cache::{SessionCache, SessionKey}; use crate::cache::{SessionCache, SessionKey};
use antidote::Mutex; use antidote::Mutex;

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tokio-boring" name = "tokio-boring"
version = "1.0.0" version = "1.0.1"
authors = ["Alex Crichton <alex@alexcrichton.com>", "Ivan Nikulin <ifaaan@gmail.com>"] authors = ["Alex Crichton <alex@alexcrichton.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
edition = "2018" edition = "2018"
@ -12,8 +12,8 @@ An implementation of SSL streams for Tokio backed by BoringSSL
""" """
[dependencies] [dependencies]
boring = { version = "1.0.0", path = "../boring" } boring = { version = "1.0.1", path = "../boring" }
boring-sys = { version = "1.0.0", path = "../boring-sys" } boring-sys = { version = "1.0.1", path = "../boring-sys" }
tokio = "0.2" tokio = "0.2"
[dev-dependencies] [dev-dependencies]