[package]
edition = "2024"
name = "slient_layer"
version = "0.1.0"
authors = ["Sergei Ivanov <dexsperpro@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compression-resistant steganography library for images and audio"
documentation = "https://docs.rs/slient_layer"
readme = "README.md"
keywords = [
"steganography",
"image",
"audio",
]
categories = [
"multimedia",
"command-line-utilities",
"cryptography",
]
license = "Apache-2.0"
repository = "https://github.com/dexsper/SlientLayer.git"
[lib]
name = "slient_layer"
crate-type = [
"rlib",
"cdylib",
"staticlib",
]
path = "src/lib.rs"
[[bin]]
name = "slient"
path = "src/main.rs"
[[test]]
name = "audio_tests"
path = "tests/audio_tests.rs"
[[test]]
name = "compression_resistance"
path = "tests/compression_resistance.rs"
[[test]]
name = "core_tests"
path = "tests/core_tests.rs"
[[test]]
name = "image_tests"
path = "tests/image_tests.rs"
[[bench]]
name = "steganography"
path = "benches/steganography.rs"
harness = false
[dependencies.aes-gcm]
version = "0.10"
[dependencies.byteorder]
version = "1.5"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.hound]
version = "3.5"
[dependencies.image]
version = "0.25"
[dependencies.libc]
version = "0.2"
[dependencies.rand]
version = "0.10"
[dependencies.rustdct]
version = "0.7"
[dependencies.rustfft]
version = "6.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.tempfile]
version = "3.10"
[profile.bench]
inherits = "release"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1