From fda73f49472145daed3d31189264aaede7e3659b Mon Sep 17 00:00:00 2001 From: Ivan Nikulin Date: Wed, 11 Nov 2020 20:32:53 +0000 Subject: [PATCH] Fix docs --- boring-sys/Cargo.toml | 3 ++- boring-sys/src/lib.rs | 1 - boring/Cargo.toml | 5 +++-- boring/src/lib.rs | 2 -- hyper-boring/Cargo.toml | 9 +++++---- hyper-boring/src/lib.rs | 1 - tokio-boring/Cargo.toml | 6 +++--- 7 files changed, 13 insertions(+), 14 deletions(-) diff --git a/boring-sys/Cargo.toml b/boring-sys/Cargo.toml index 4568795b..9b37e2d5 100644 --- a/boring-sys/Cargo.toml +++ b/boring-sys/Cargo.toml @@ -1,12 +1,13 @@ [package] name = "boring-sys" -version = "1.0.0" +version = "1.0.1" authors = ["Alex Crichton ", "Steven Fackler ", "Ivan Nikulin "] license = "MIT" description = "FFI bindings to BoringSSL" repository = "https://github.com/inikulin/boring" +documentation = "https://docs.rs/boring-sys" readme = "README.md" categories = ["cryptography", "external-ffi-bindings"] include = [ diff --git a/boring-sys/src/lib.rs b/boring-sys/src/lib.rs index a3fcb6a6..5f3842d6 100644 --- a/boring-sys/src/lib.rs +++ b/boring-sys/src/lib.rs @@ -8,7 +8,6 @@ overflowing_literals, unused_imports )] -#![doc(html_root_url = "https://docs.rs/boring-sys")] extern crate libc; diff --git a/boring/Cargo.toml b/boring/Cargo.toml index 4d578eb5..c2348e95 100644 --- a/boring/Cargo.toml +++ b/boring/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "boring" -version = "1.0.0" +version = "1.0.1" authors = ["Steven Fackler ", "Ivan Nikulin "] license = "Apache-2.0" description = "BoringSSL bindings" repository = "https://github.com/inikulin/boring" +documentation = "https://docs.rs/boring" readme = "README.md" keywords = ["crypto", "tls", "ssl", "dtls"] categories = ["cryptography", "api-bindings"] @@ -14,7 +15,7 @@ bitflags = "1.0" foreign-types = "0.3.1" lazy_static = "1" libc = "0.2" -boring-sys = { version = "1.0.0", path = "../boring-sys" } +boring-sys = { version = "1.0.1", path = "../boring-sys" } [dev-dependencies] tempdir = "0.3" diff --git a/boring/src/lib.rs b/boring/src/lib.rs index af8aaaa8..9c087714 100644 --- a/boring/src/lib.rs +++ b/boring/src/lib.rs @@ -2,8 +2,6 @@ //! //! This crate provides a safe interface to the BoringSSL cryptography library. -#![doc(html_root_url = "https://docs.rs/openssl/0.10")] - #[macro_use] extern crate bitflags; #[macro_use] diff --git a/hyper-boring/Cargo.toml b/hyper-boring/Cargo.toml index 7666f16c..d2ca8ff4 100644 --- a/hyper-boring/Cargo.toml +++ b/hyper-boring/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "hyper-boring" -version = "1.0.0" +version = "1.0.1" authors = ["Steven Fackler ", "Ivan Nikulin "] edition = "2018" description = "Hyper TLS support via BoringSSL" license = "MIT/Apache-2.0" repository = "https://github.com/sfackler/hyper-boring" +documentation = "https://docs.rs/hyper-boring" readme = "README.md" exclude = ["test/*"] @@ -21,10 +22,10 @@ http = "0.2" hyper = { version = "0.13", default-features = false } linked_hash_set = "0.1" once_cell = "1.0" -boring = { version = "1.0.0", path = "../boring" } -boring-sys = { version = "1.0.0", path = "../boring-sys" } +boring = { version = "1.0.1", path = "../boring" } +boring-sys = { version = "1.0.1", path = "../boring-sys" } 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" [dev-dependencies] diff --git a/hyper-boring/src/lib.rs b/hyper-boring/src/lib.rs index f8310656..6891ad5f 100644 --- a/hyper-boring/src/lib.rs +++ b/hyper-boring/src/lib.rs @@ -1,6 +1,5 @@ //! Hyper SSL support via OpenSSL. #![warn(missing_docs)] -#![doc(html_root_url = "https://docs.rs/hyper-boring")] use crate::cache::{SessionCache, SessionKey}; use antidote::Mutex; diff --git a/tokio-boring/Cargo.toml b/tokio-boring/Cargo.toml index ac3e2dc0..cd964eb4 100644 --- a/tokio-boring/Cargo.toml +++ b/tokio-boring/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-boring" -version = "1.0.0" +version = "1.0.1" authors = ["Alex Crichton ", "Ivan Nikulin "] license = "MIT/Apache-2.0" edition = "2018" @@ -12,8 +12,8 @@ An implementation of SSL streams for Tokio backed by BoringSSL """ [dependencies] -boring = { version = "1.0.0", path = "../boring" } -boring-sys = { version = "1.0.0", path = "../boring-sys" } +boring = { version = "1.0.1", path = "../boring" } +boring-sys = { version = "1.0.1", path = "../boring-sys" } tokio = "0.2" [dev-dependencies]