[package]
name = "rip-starttls"
description = "Sans I/O implementation of "
version = "0.1.0"
authors = ["soywod "]
edition = "2021"
license = "MIT"
categories = ["asynchronous", "email", "network-programming"]
keywords = ["starttls", "imap", "tokio", "async-std", "ssl"]
homepage = "https://pimalaya.org/"
documentation = "https://docs.rs/rip-starttls/latest/rip_starttls/"
repository = "https://github.com/pimalaya/core/tree/master/rip-starttls/"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
std = []
tokio = ["dep:tokio"]
async-std = ["dep:async-std"]
[dev-dependencies]
async-std = { version = "1.13", features = ["attributes"] }
env_logger = "0.11"
rip-starttls = { path = ".", features = ["std", "async-std", "tokio"] }
tokio = { version = "1.37", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
[dependencies]
async-std = { version = "1.13", optional = true }
tokio = { version = "1.37", optional = true, default-features = false, features = ["io-util", "net"] }
tracing = "0.1"