33 lines
968 B
TOML
33 lines
968 B
TOML
[package]
|
|
name = "tokio-boring"
|
|
version = "2.1.5"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2021"
|
|
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
|
|
"""
|
|
|
|
[dependencies]
|
|
boring = { version = ">=1.1.0,<3.0.0", path = "../boring" }
|
|
boring-sys = { version = ">=1.1.0,<3.0.0", path = "../boring-sys" }
|
|
tokio = "1"
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3"
|
|
tokio = { version = "1", features = ["full"] }
|
|
anyhow = "1"
|
|
|
|
[features]
|
|
# Use a FIPS-validated version of boringssl.
|
|
fips = ["boring/fips"]
|
|
|
|
# Enables Raw public key API (https://datatracker.ietf.org/doc/html/rfc7250)
|
|
rpk = ["boring/rpk"]
|
|
|
|
# Enables post-quantum crypto (https://blog.cloudflare.com/post-quantum-for-all/)
|
|
post-quantum = ["boring/post-quantum"]
|