[package]
edition = "2024"
rust-version = "1.85.0"
name = "async-openssl"
version = "0.2.2"
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Marc-Antoine Perennou <Marc-Antoine@Perennou.com>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An implementation of SSL streams for async IO backed by OpenSSL"
documentation = "https://docs.rs/async-openssl"
readme = "README.md"
keywords = [
"crypto",
"tls",
"ssl",
"dtls",
]
categories = [
"asynchronous",
"cryptography",
"network-programming",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/amqp-rs/async-openssl"
[lib]
name = "async_openssl"
path = "src/lib.rs"
[dependencies.futures-io]
version = "^0.3"
[dependencies.openssl]
version = "^0.10.72"
[dependencies.openssl-sys]
version = "^0.9"
[dev-dependencies.futures-util]
version = "^0.3"
default-features = false
[dev-dependencies.smol]
version = "^2.0"