2023-10-09 21:59:19 +00:00
|
|
|
[package]
|
|
|
|
|
name = "encrypted_images"
|
2026-04-18 19:40:48 +00:00
|
|
|
version = "1.4.0"
|
2023-10-09 21:59:19 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
description = "Encrypt Text to Images and decrypt text from images."
|
2026-04-18 19:40:48 +00:00
|
|
|
authors = ["Bruce Bates | https://www.linkedin.com/in/bruce-bates/"]
|
2023-10-24 04:54:02 +00:00
|
|
|
license = "MIT"
|
2023-10-09 21:59:19 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
openssl = { version = "0.10.57", features = ["vendored"] }
|
|
|
|
|
base64 = "0.21.4"
|
|
|
|
|
image = { version = "0.23", features = ["png"] }
|
|
|
|
|
native-dialog = "0.6.4"
|
|
|
|
|
hmac = "0.12.1"
|
|
|
|
|
sha2 = "0.10.7"
|
|
|
|
|
hex-literal = "0.4.1"
|
|
|
|
|
encoding = "0.2"
|
|
|
|
|
subtle = "2.4"
|
2023-10-24 04:54:02 +00:00
|
|
|
rand = "0.8.5"
|