-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 723 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "visual-cryptography"
version = "0.1.0"
edition = "2021"
authors = ["Vlad Dyachenko wowinter13 <gotta.go.vlad@gmail.com>"]
description = "A Rust implementation of main visual cryptography algorithms supporting multiple schemes and block sizes"
license = "MIT"
repository = "https://github.com/wowinter13/visual-cryptography"
keywords = [
"cryptography",
"visual-cryptography",
"image-processing",
"steganography",
]
categories = [
"cryptography",
"multimedia::images",
"algorithms",
"encoding",
"security",
]
exclude = ["assets/*"]
[dependencies]
image = "0.24"
rand = "0.9.1"
thiserror = "1.0"
nalgebra = "0.33.2"
qrcode = "0.14"
[dev-dependencies]
criterion = "0.6"
tempfile = "3.8"