-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 713 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (24 loc) · 713 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
[package]
authors = ["Romeo Ahmed <ahmedorqwn@gmail.com>"]
name = "lsb_hide"
version = "4.0.2"
edition = "2024"
description = "LSB Steganography Tool for lossless images like PNG and BMP"
license = "MIT"
readme = "README.md"
repository = "https://github.com/romeoahmed/lsb_hide"
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.0", features = ["derive"] }
colored = "3.1.1"
image = { version = "0.25.10", default-features = false, features = ["bmp", "png", "tiff", "webp", "qoi"] }
[dev-dependencies]
rand = "0.10"
tempfile = "3.23.0"
[profile.release]
lto = "thin"
strip = "symbols"
panic = "abort"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }