[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"