stego_rust 0.2.0

Library for image steganography with AES-256-GCM encryption and Argon2id key derivation
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 = "2021"
name = "stego_rust"
version = "0.2.0"
authors = ["Fernando Paucar fernandopaucar149@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for image steganography with AES-256-GCM encryption and Argon2id key derivation"
homepage = "https://github.com/fernandopr11/StegoRust"
documentation = "https://docs.rs/stego_rust"
readme = "README.md"
keywords = [
    "steganography",
    "cryptography",
    "image",
    "aes",
    "argon2",
]
categories = [
    "cryptography",
    "encoding",
    "multimedia::images",
]
license = "GPL-3.0"
repository = "https://github.com/fernandopr11/StegoRust"

[lib]
name = "stego_rust"
path = "src/lib.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.aes-gcm]
version = "0.10"

[dependencies.argon2]
version = "0.5"

[dependencies.hkdf]
version = "0.12"

[dependencies.image]
version = "0.25"

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1"

[dependencies.uuid]
version = "1"
features = ["v4"]

[dev-dependencies.sha2]
version = "0.10"

[dev-dependencies.tempfile]
version = "3"