[package]
edition = "2024"
rust-version = "1.97.1"
name = "rusty_crypt"
version = "0.3.3"
authors = ["Tina-1300"]
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
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",
"rusty_crypt",
"secure",
]
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.23.0"
[dependencies.getrandom]
version = "0.4.3"
[dependencies.thiserror]
version = "2.0.19"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
debug-assertions = false
panic = "abort"
strip = true