diff --git a/screenpipe-server/Cargo.toml b/screenpipe-server/Cargo.toml index 60ecce857..d22086c94 100644 --- a/screenpipe-server/Cargo.toml +++ b/screenpipe-server/Cargo.toml @@ -18,7 +18,7 @@ screenpipe-audio = { path = "../screenpipe-audio" } screenpipe-core = { path = "../screenpipe-core" } # Image processing -image = "0.25.0" +image = { workspace = true } # OCR # rusty-tesseract = "1.1.10" diff --git a/screenpipe-vision/Cargo.toml b/screenpipe-vision/Cargo.toml index c45f21ed6..a9274e8fb 100644 --- a/screenpipe-vision/Cargo.toml +++ b/screenpipe-vision/Cargo.toml @@ -25,7 +25,7 @@ num_cpus = "1.0" tokio = { workspace = true } # Image processing -image = "0.25.0" +image = { workspace = true } # OCR # rusty-tesseract = "1.1.10" @@ -56,6 +56,9 @@ strsim = "0.10.0" clap = { version = "4.0", features = ["derive"] } # tokio = { version = "1", features = ["full"] } +# Integrations +screenpipe-integrations = { path = "../screenpipe-integrations" } + [dev-dependencies] tempfile = "3.3.0" criterion = { workspace = true }