30 lines
832 B
TOML
30 lines
832 B
TOML
[package]
|
|
name = "tokio-boring2"
|
|
version = { workspace = true }
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = { workspace = true }
|
|
repository = { workspace = true }
|
|
homepage = "https://github.com/0x676e67/boring2"
|
|
documentation = "https://docs.rs/tokio-boring2"
|
|
description = """
|
|
An implementation of SSL streams for Tokio backed by BoringSSL
|
|
"""
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
# Use a FIPS-validated version of boringssl.
|
|
fips = ["boring/fips", "boring-sys/fips"]
|
|
|
|
[dependencies]
|
|
boring = { workspace = true }
|
|
boring-sys = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
futures = { workspace = true }
|
|
tokio = { workspace = true, features = [ "full" ] }
|
|
anyhow = { workspace = true }
|