[package]
name = "rusty_crypt"
version = "0.2.0"
edition = "2024"
authors = ["Tina-1300"]
description = "Rust library allowing for a very quick and simple implementation of AES-GCM encryption"
license = "MIT"
keywords = ["api", "cryptography", "aes-gcm", "fast", "rusty_crypt"]
repository = "https://github.com/Tina-1300/rusty_crypt"
rust-version = "1.91.1"
[dependencies]
aes-gcm = "0.10.3"
base64 = "0.22.1"
thiserror = "2.0.19"
getrandom = "0.4.3"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "s"
strip = true
debug-assertions = false