Add image BufferedImageLS

This commit is contained in:
Henry Schimke
2022-08-31 15:57:34 -05:00
parent 35b9d7bd8b
commit 94d6754c46
4 changed files with 213 additions and 184 deletions

View File

@@ -8,4 +8,10 @@ edition = "2021"
[dependencies]
regex = "1"
encoding = "0.2"
rand = "0.8.5"
rand = "0.8.5"
image = {version = "0.24.3", optional = true}
imageproc = {version = "0.23.0", optional = true}
[features]
default = ["image"]
image = ["dep:image", "dep:imageproc"]