Merge pull request #2 from gabi-250/fix-boring-links
Fix hyper-boring repository link.
This commit is contained in:
commit
f8ab082d59
|
|
@ -6,7 +6,7 @@ authors = ["Alex Crichton <alex@alexcrichton.com>",
|
|||
"Ivan Nikulin <ifaaan@gmail.com>"]
|
||||
license = "MIT"
|
||||
description = "FFI bindings to BoringSSL"
|
||||
repository = "https://github.com/inikulin/boring"
|
||||
repository = "https://github.com/cloudflare/boring"
|
||||
documentation = "https://docs.rs/boring-sys"
|
||||
links = "boringssl"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ version = "1.0.2"
|
|||
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
|
||||
license = "Apache-2.0"
|
||||
description = "BoringSSL bindings"
|
||||
repository = "https://github.com/inikulin/boring"
|
||||
repository = "https://github.com/cloudflare/boring"
|
||||
documentation = "https://docs.rs/boring"
|
||||
readme = "README.md"
|
||||
keywords = ["crypto", "tls", "ssl", "dtls"]
|
||||
|
|
@ -20,4 +20,4 @@ boring-sys = { version = "1.0.2", path = "../boring-sys" }
|
|||
[dev-dependencies]
|
||||
tempdir = "0.3"
|
||||
hex = "0.3"
|
||||
rusty-hook = "^0.10.1"
|
||||
rusty-hook = "^0.10.1"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.co
|
|||
edition = "2018"
|
||||
description = "Hyper TLS support via BoringSSL"
|
||||
license = "MIT/Apache-2.0"
|
||||
repository = "https://github.com/sfackler/hyper-boring"
|
||||
repository = "https://github.com/cloudflare/boring"
|
||||
documentation = "https://docs.rs/hyper-boring"
|
||||
readme = "README.md"
|
||||
exclude = ["test/*"]
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ version = "1.0.2"
|
|||
authors = ["Alex Crichton <alex@alexcrichton.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
|
||||
license = "MIT/Apache-2.0"
|
||||
edition = "2018"
|
||||
repository = "https://github.com/inikulin/boring"
|
||||
homepage = "https://github.com/inikulin/boring"
|
||||
repository = "https://github.com/cloudflare/boring"
|
||||
homepage = "https://github.com/cloudflare/boring"
|
||||
documentation = "https://docs.rs/tokio-boring"
|
||||
description = """
|
||||
An implementation of SSL streams for Tokio backed by BoringSSL
|
||||
|
|
|
|||
|
|
@ -20,10 +20,10 @@ use tokio_boring::{SslConnectorExt, SslAcceptorExt};
|
|||
```
|
||||
|
||||
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
|
||||
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
|
||||
|
|
@ -45,4 +45,4 @@ dual licensed as above, without any additional terms or conditions.
|
|||
|
||||
## Accolades
|
||||
|
||||
The project is based on a fork of [tokio-openssl](https://github.com/sfackler/tokio-openssl).
|
||||
The project is based on a fork of [tokio-openssl](https://github.com/sfackler/tokio-openssl).
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@
|
|||
//!
|
||||
//! This crate primarily exports this ability through two extension traits,
|
||||
//! `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
|
||||
//! the [`boring` crate](https://github.com/inikulin/boring)
|
||||
//! the [`boring` crate](https://github.com/cloudflare/boring)
|
||||
#![warn(missing_docs)]
|
||||
|
||||
use boring::ssl::{
|
||||
|
|
|
|||
Loading…
Reference in New Issue