crypto_secretstream 0.2.0

Pure Rust implementation of libsodium's crypto_secretstream secret-key using ChaCha20 and Poly1305
Documentation
[dependencies.aead]
features = ["stream"]
version = "0.5"

[dependencies.chacha20]
version = "0.9"

[dependencies.poly1305]
version = "0.8"

[dependencies.rand_core]
version = "0.6"

[dependencies.subtle]
default-features = false
version = "2"
[dev-dependencies.rand_core]
features = ["std"]
version = "0.6"

[features]
alloc = ["aead/alloc"]
default = ["std"]
heapless = ["aead/heapless"]
std = ["alloc", "rand_core/std", "chacha20/std", "poly1305/std"]

[package]
authors = ["C4DT", "RustCrypto Developers"]
categories = ["cryptography"]
description = "Pure Rust implementation of libsodium's crypto_secretstream secret-key using\nChaCha20 and Poly1305\n"
documentation = "https://docs.rs/crypto_secretstream"
edition = "2021"
homepage = "https://github.com/RustCrypto/nacl-compat"
keywords = ["nacl", "libsodium", "public-key", "chacha20", "poly1305"]
license = "Apache-2.0 OR MIT"
name = "crypto_secretstream"
readme = "README.md"
repository = "https://github.com/RustCrypto/nacl-compat/tree/master/crypto_secretstream"
rust-version = "1.60"
version = "0.2.0"
[target."cfg(target_family = \"wasm\")".dependencies.getrandom]
default-features = false
features = ["js"]
version = "0.2"