async-imap 0.11.2

Async IMAP client for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "async-imap"
version = "0.11.2"
authors = ["dignifiedquire <me@dignifiedquire.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async IMAP client for Rust"
homepage = "https://github.com/async-email/async-imap"
documentation = "https://docs.rs/async-imap/"
readme = "README.md"
keywords = [
    "email",
    "imap",
]
categories = [
    "email",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/async-email/async-imap"

[badges.is-it-maintained-issue-resolution]
repository = "async-email/async-imap"

[badges.is-it-maintained-open-issues]
repository = "async-email/async-imap"

[badges.maintenance]
status = "actively-developed"

[features]
compress = ["async-compression"]
default = ["runtime-async-std"]
runtime-async-std = [
    "async-std",
    "async-compression?/futures-io",
]
runtime-tokio = [
    "tokio",
    "async-compression?/tokio",
]

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

[dependencies.async-channel]
version = "2.0.0"

[dependencies.async-compression]
version = "0.4.15"
features = ["deflate"]
optional = true
default-features = false

[dependencies.async-std]
version = "1.8.0"
features = [
    "std",
    "unstable",
]
optional = true
default-features = false

[dependencies.base64]
version = "0.22.1"

[dependencies.bytes]
version = "1"

[dependencies.chrono]
version = "0.4"
features = ["std"]
default-features = false

[dependencies.futures]
version = "0.3.15"

[dependencies.imap-proto]
version = "0.16.4"

[dependencies.log]
version = "0.4.8"

[dependencies.nom]
version = "7.0"

[dependencies.pin-project]
version = "1"

[dependencies.pin-utils]
version = "0.1.0-alpha.4"

[dependencies.self_cell]
version = "1.0.1"

[dependencies.stop-token]
version = "0.7"

[dependencies.thiserror]
version = "1.0.9"

[dependencies.tokio]
version = "1"
features = [
    "net",
    "sync",
    "time",
    "io-util",
]
optional = true

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

[dev-dependencies.pretty_assertions]
version = "1.2"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
]