visual-cryptography 0.1.0

A Rust implementation of main visual cryptography algorithms supporting multiple schemes and block sizes
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 = "visual-cryptography"
version = "0.1.0"
authors = ["Vlad Dyachenko wowinter13 <gotta.go.vlad@gmail.com>"]
build = false
exclude = ["assets/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of main visual cryptography algorithms supporting multiple schemes and block sizes"
readme = "README.md"
keywords = [
    "cryptography",
    "visual-cryptography",
    "image-processing",
    "steganography",
]
categories = [
    "cryptography",
    "multimedia::images",
    "algorithms",
    "encoding",
    "security",
]
license = "MIT"
repository = "https://github.com/wowinter13/visual-cryptography"

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

[[example]]
name = "dhiman_kasana_example"
path = "examples/dhiman_kasana_example.rs"

[[example]]
name = "naor_shamir_example"
path = "examples/naor_shamir_example.rs"

[[example]]
name = "taghaddos_latif_example"
path = "examples/taghaddos_latif_example.rs"

[[example]]
name = "xor_based_example"
path = "examples/xor_based_example.rs"

[[example]]
name = "yamaguchi_nakajima_example"
path = "examples/yamaguchi_nakajima_example.rs"

[dependencies.image]
version = "0.24"

[dependencies.nalgebra]
version = "0.33.2"

[dependencies.qrcode]
version = "0.14"

[dependencies.rand]
version = "0.9.1"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.criterion]
version = "0.6"

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