Fix boring repository links.
This commit is contained in:
parent
5a308ba6ab
commit
31ed6443b1
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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"]
|
||||||
|
|
@ -20,4 +20,4 @@ boring-sys = { version = "1.0.2", path = "../boring-sys" }
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempdir = "0.3"
|
tempdir = "0.3"
|
||||||
hex = "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"
|
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/*"]
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
@ -45,4 +45,4 @@ dual licensed as above, without any additional terms or conditions.
|
||||||
|
|
||||||
## Accolades
|
## 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,
|
//! 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::{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue