[package]
edition = "2024"
rust-version = "1.91.1"
name = "rusty_crypt"
version = "0.1.0"
authors = ["Tina-1300"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library allowing for a very quick and simple implementation of AES-GCM encryption"
readme = "README.md"
keywords = [
"api",
"cryptography",
"aes-gcm",
"fast",
"rusty_crypt",
]
license = "MIT"
repository = "https://github.com/Tina-1300/rusty_crypt"
[lib]
name = "rusty_crypt"
path = "src/lib.rs"
[[test]]
name = "test_aes_gcm_256_decrypt"
path = "tests/test_aes_gcm_256_decrypt.rs"
[[test]]
name = "test_aes_gcm_256_encrypt"
path = "tests/test_aes_gcm_256_encrypt.rs"
[[test]]
name = "test_aes_gcm_256_encrypt_decrypt"
path = "tests/test_aes_gcm_256_encrypt_decrypt.rs"
[[test]]
name = "test_aes_gcm_256_generated_key"
path = "tests/test_aes_gcm_256_generated_key.rs"
[[test]]
name = "test_aes_gcm_256_generated_nonce"
path = "tests/test_aes_gcm_256_generated_nonce.rs"
[dependencies.aes-gcm]
version = "0.10.3"
[dependencies.base64]
version = "0.22.1"
[dependencies.rand]
version = "0.8"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
debug-assertions = false
panic = "abort"
strip = true