[package]
name = "rusty_crypt"
version = "0.4.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", "rusty_crypt", "secure"]
repository = "https://github.com/Tina-1300/rusty_crypt"
rust-version = "1.97.1"
include = [
"src/**/*.rs",
"tests/**/*.rs",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
[dependencies]
aes-gcm = "0.11.0"
base64 = "0.23.0"
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