rusty_crypt 0.4.0

Rust library allowing for a very quick and simple implementation of AES-GCM encryption
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.97.1"
name = "rusty_crypt"
version = "0.4.0"
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.11.0"

[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