[package]
edition = "2024"
rust-version = "1.85.0"
name = "blind_watermark"
version = "0.1.3"
authors = ["Naganohara Yoshino <naganohara-yoshino@outlook.com>"]
build = false
exclude = [".github/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Picture blind watermarking."
homepage = "https://github.com/naganohara-yoshino/blind-watermark-rust"
documentation = "https://docs.rs/blind_watermark"
readme = "README.md"
keywords = [
"watermark",
"image",
"blind-watermark",
"steganography",
"cli",
]
categories = [
"multimedia::images",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/naganohara-yoshino/blind-watermark-rust"
[lib]
name = "blind_watermark"
path = "src/lib.rs"
[[bin]]
name = "blind_watermark"
path = "src/main.rs"
[[test]]
name = "add_and_extract_string_wm"
path = "tests/add_and_extract_string_wm.rs"
[[test]]
name = "add_and_extract_watermark"
path = "tests/add_and_extract_watermark.rs"
[[test]]
name = "add_and_extract_watermark_plain"
path = "tests/add_and_extract_watermark_plain.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bitvec]
version = "1.0"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.colored]
version = "3.0"
[dependencies.derive_builder]
version = "0.20"
[dependencies.faer]
version = "0.24"
[dependencies.ignore]
version = "0.4"
[dependencies.image]
version = "0.25"
[dependencies.indicatif]
version = "0.18"
[dependencies.itertools]
version = "0.14"
[dependencies.num]
version = "0.4"
[dependencies.rand]
version = "0.10"
[dependencies.rand_pcg]
version = "0.10"
[dependencies.rayon]
version = "1.11"
[dev-dependencies.approx]
version = "0.5"
[profile.dev.package.faer]
opt-level = 3
[profile.release]
debug = 2