2024-12-22 20:56:52 -03:00
|
|
|
[package]
|
|
|
|
name = "gb-image"
|
2024-12-25 16:25:09 -03:00
|
|
|
version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
license = { workspace = true }
|
2024-12-22 20:56:52 -03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gb-core = { path = "../gb-core" }
|
|
|
|
image = { version = "0.24", features = ["webp", "jpeg", "png", "gif"] }
|
|
|
|
imageproc = "0.23"
|
|
|
|
rusttype = "0.9"
|
2024-12-23 00:54:50 -03:00
|
|
|
tesseract = "0.12"
|
2024-12-25 16:25:09 -03:00
|
|
|
async-trait= { workspace = true }
|
|
|
|
tokio= { workspace = true }
|
|
|
|
serde= { workspace = true }
|
|
|
|
serde_json= { workspace = true }
|
|
|
|
thiserror= { workspace = true }
|
|
|
|
tracing= { workspace = true }
|
2024-12-23 17:36:12 -03:00
|
|
|
tempfile = "3.8"
|
2024-12-22 20:56:52 -03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-12-25 16:25:09 -03:00
|
|
|
rstest= { workspace = true }
|
2024-12-22 20:56:52 -03:00
|
|
|
tokio-test = "0.4"
|
2024-12-23 00:54:50 -03:00
|
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
reqwest = { version = "0.11", features = ["blocking"] }
|