rip-starttls 0.1.0

Sans I/O implementation of <https://duesee.dev/p/avoid-implementing-starttls/>
Documentation
[dependencies.async-std]
optional = true
version = "1.13"

[dependencies.tokio]
default-features = false
features = ["io-util", "net"]
optional = true
version = "1.37"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.async-std]
features = ["attributes"]
version = "1.13"

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.tokio]
features = ["full"]
version = "1.37"

[dev-dependencies.tracing]
features = ["log"]
version = "0.1"

[[example]]
name = "imap-async-std"
path = "examples/imap-async-std.rs"

[[example]]
name = "imap-std"
path = "examples/imap-std.rs"

[[example]]
name = "imap-tokio"
path = "examples/imap-tokio.rs"

[features]
async-std = ["dep:async-std"]
std = []
tokio = ["dep:tokio"]

[lib]
name = "rip_starttls"
path = "src/lib.rs"

[package]
authors = ["soywod <clement.douin@posteo.net>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["asynchronous", "email", "network-programming"]
description = "Sans I/O implementation of <https://duesee.dev/p/avoid-implementing-starttls/>"
documentation = "https://docs.rs/rip-starttls/latest/rip_starttls/"
edition = "2021"
homepage = "https://pimalaya.org/"
keywords = ["starttls", "imap", "tokio", "async-std", "ssl"]
license = "MIT"
name = "rip-starttls"
readme = "README.md"
repository = "https://github.com/pimalaya/core/tree/master/rip-starttls/"
version = "0.1.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]