[package]
name = "polycrypt"
version = "0.1.1"
edition = "2021"
description = "Simple symmetric authenticated encryption in memory. Nothing fancy here."
readme = "README.md"
license = "Unlicense"
[dependencies]
aead = { version = "0.5", features = ["std"] }
base64 = "0.22"
chacha20poly1305 = "0.10"
hmac = "0.12"
sha2 = "0.10"
[dev-dependencies]
hex = "0.4.3"