Fix boring repository links.

This commit is contained in:
Gabriela Alexandra Moldovan 2020-11-13 23:53:12 +00:00
parent 5a308ba6ab
commit 31ed6443b1
6 changed files with 11 additions and 11 deletions

View File

@ -6,7 +6,7 @@ authors = ["Alex Crichton <alex@alexcrichton.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/cloudflare/boring"
documentation = "https://docs.rs/boring-sys" documentation = "https://docs.rs/boring-sys"
links = "boringssl" links = "boringssl"
readme = "README.md" readme = "README.md"

View File

@ -4,7 +4,7 @@ version = "1.0.2"
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/cloudflare/boring"
documentation = "https://docs.rs/boring" documentation = "https://docs.rs/boring"
readme = "README.md" readme = "README.md"
keywords = ["crypto", "tls", "ssl", "dtls"] keywords = ["crypto", "tls", "ssl", "dtls"]

View File

@ -5,7 +5,7 @@ authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.co
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/cloudflare/boring"
documentation = "https://docs.rs/hyper-boring" documentation = "https://docs.rs/hyper-boring"
readme = "README.md" readme = "README.md"
exclude = ["test/*"] exclude = ["test/*"]

View File

@ -4,8 +4,8 @@ version = "1.0.2"
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"
repository = "https://github.com/inikulin/boring" repository = "https://github.com/cloudflare/boring"
homepage = "https://github.com/inikulin/boring" homepage = "https://github.com/cloudflare/boring"
documentation = "https://docs.rs/tokio-boring" documentation = "https://docs.rs/tokio-boring"
description = """ description = """
An implementation of SSL streams for Tokio backed by BoringSSL An implementation of SSL streams for Tokio backed by BoringSSL

View File

@ -20,10 +20,10 @@ use tokio_boring::{SslConnectorExt, SslAcceptorExt};
``` ```
This crate provides two extension traits, `SslConnectorExt` and This crate provides two extension traits, `SslConnectorExt` and
`SslAcceptorExt`, which augment the functionality provided by the [`boring` crate](https://github.com/inikulin/boring). `SslAcceptorExt`, which augment the functionality provided by the [`boring` crate](https://github.com/cloudflare/boring).
These extension traits provide the ability to connect a stream These extension traits provide the ability to connect a stream
asynchronously and accept a socket asynchronously. Configuration of BoringSSL asynchronously and accept a socket asynchronously. Configuration of BoringSSL
parameters is still done through the support in the [`boring` crate](https://github.com/inikulin/boring). parameters is still done through the support in the [`boring` crate](https://github.com/cloudflare/boring).
# License # License

View File

@ -8,9 +8,9 @@
//! //!
//! This crate primarily exports this ability through two extension traits, //! This crate primarily exports this ability through two extension traits,
//! `SslConnectorExt` and `SslAcceptorExt`. These traits augment the //! `SslConnectorExt` and `SslAcceptorExt`. These traits augment the
//! functionality provided by the [`boring` crate](https://github.com/inikulin/boring) crate, //! functionality provided by the [`boring` crate](https://github.com/cloudflare/boring) crate,
//! on which this crate is built. Configuration of TLS parameters is still primarily done through //! on which this crate is built. Configuration of TLS parameters is still primarily done through
//! the [`boring` crate](https://github.com/inikulin/boring) //! the [`boring` crate](https://github.com/cloudflare/boring)
#![warn(missing_docs)] #![warn(missing_docs)]
use boring::ssl::{ use boring::ssl::{