async-encrypted-stream 0.2.1

Async Read and Write wrappers around the chacha20 encryption primitives
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 = "2024"
name = "async-encrypted-stream"
version = "0.2.1"
authors = ["Ilson Roberto Balliego Junior <ilson.balliego@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Read and Write wrappers around the chacha20 encryption primitives"
readme = "README.md"
keywords = [
    "aead",
    "chacha20",
    "poly1035",
    "tokio",
    "stream",
]
categories = [
    "cryptography",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/balliegojr/async-encrypted-stream"

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

[[test]]
name = "tcp_stream"
path = "tests/tcp_stream.rs"

[dependencies.aead-stream]
version = "0.6"
features = ["alloc"]

[dependencies.bytes]
version = "1.0"

[dependencies.chacha20poly1305]
version = "0.11"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.tokio]
version = "1.23"

[dev-dependencies.pbkdf2]
version = "0.13"

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

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