encipher 0.1.3

A fast session-data cipher for Rust
Documentation
[package]
name        = "encipher"
version     = "0.1.3"
edition     = "2021"
description = "A fast session-data cipher for Rust"
license     = "Apache-2.0"
repository  = "https://github.com/mjlad/encipher"
readme      = "README.md"
keywords    = ["encryption", "session", "cipher", "hmac", "security"]
categories  = ["cryptography", "encoding"]

[lib]
name       = "encipher"
crate-type = ["rlib"]

[dependencies]
thiserror = "2"
hmac      = "0.12"
sha2      = "0.10"
base64ct = { version = "1.8", features = ["alloc"] }
rand      = { version = "0.10", features = ["chacha"] }

[profile.release]
opt-level     = 3
lto           = true
codegen-units = 1