Files
chacha20-poly1305-stream/Cargo.toml
2023-10-22 00:42:30 +08:00

26 lines
699 B
TOML

[package]
name = "chacha20-poly1305-stream"
version = "0.1.0"
edition = "2021"
authors = ["Cesar Eduardo Barros <cesarb@cesarb.eti.br>", "Hatter Jiang <jht5945@gmail.com>"]
description = "A pure Rust implementation of the ChaCha20-Poly1305 AEAD from RFC 7539."
repository = "https://git.hatter.ink/hatter/chacha20-poly1305-stream"
readme = "README.md"
keywords = ["chacha20", "poly1305", "aead", "crypto"]
license = "MIT OR Apache-2.0"
[features]
bench = []
simd = []
simd_opt = ["simd"]
simd_asm = ["simd_opt"]
[dependencies]
constant_time_eq = "0.1.0"
clippy = { version = "0.0.37", optional = true }
hex = "0.4.3"
[dev-dependencies]
chacha20-poly1305-aead = "0.1.2"
benchmark-simple = "0.1.8"