[package]
edition = "2021"
rust-version = "1.85"
name = "tokio-boring"
version = "5.2.0"
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Ivan Nikulin <ifaaan@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
An implementation of SSL streams for Tokio backed by BoringSSL
"""
homepage = "https://github.com/cloudflare/boring"
documentation = "https://docs.rs/tokio-boring"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/cloudflare/boring"
[package.metadata.docs.rs]
features = ["rpk"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["boring/default"]
fips = [
"boring/fips",
"boring-sys/fips",
]
rpk = ["boring/rpk"]
[lib]
name = "tokio_boring"
path = "src/lib.rs"
[[example]]
name = "simple-async"
path = "examples/simple-async.rs"
[[test]]
name = "async_custom_verify"
path = "tests/async_custom_verify.rs"
[[test]]
name = "async_get_session"
path = "tests/async_get_session.rs"
[[test]]
name = "async_private_key_method"
path = "tests/async_private_key_method.rs"
[[test]]
name = "async_select_certificate"
path = "tests/async_select_certificate.rs"
[[test]]
name = "client_server"
path = "tests/client_server.rs"
[[test]]
name = "rpk"
path = "tests/rpk.rs"
[dependencies.boring]
version = "5.2.0"
default-features = false
[dependencies.boring-sys]
version = "5.2.0"
default-features = false
[dependencies.tokio]
version = "1"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.tokio]
version = "1"
features = ["full"]