Skip to content

Commit

Permalink
undo imgproc an io
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarriba committed Dec 16, 2024
1 parent 245a743 commit f4a378e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ license = "Apache-2.0"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/kornia/kornia-rs"
rust-version = "1.79"
rust-version = "1.76"
version = "0.1.8-rc.1"

[workspace.dependencies]
Expand All @@ -41,13 +41,13 @@ kornia-3d = { path = "crates/kornia-3d", version = "0.1.8-rc.1" }
kornia = { path = "crates/kornia", version = "0.1.8-rc.1" }

# dev dependencies for workspace
argh = "0.1.12"
approx = "0.5.1"
criterion = "0.5.1"
env_logger = "0.11.5"
argh = "0.1"
approx = "0.5"
criterion = "0.5"
env_logger = "0.11"
log = "0.4"
num-traits = "0.2"
rand = "0.8.5"
rand = "0.8"
rerun = "^0.20"
serde = { version = "1", features = ["derive"] }
tempfile = "3.10"
Expand Down
1 change: 0 additions & 1 deletion crates/kornia-imgproc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ thiserror = { workspace = true }
[dev-dependencies]
criterion = { workspace = true }
kornia-io = { workspace = true }
image = "0.25.1"
ndarray = { version = "0.15", features = ["rayon"] }

[[bench]]
Expand Down
4 changes: 2 additions & 2 deletions crates/kornia-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ version.workspace = true
all-features = true

[dependencies]
kornia-image = { workspace = true }
image = "0.25"
kornia-image = { workspace = true }
log = { workspace = true }
thiserror = { workspace = true }

# optional dependencies
gst = { version = "0.23.0", package = "gstreamer", optional = true }
gst-app = { version = "0.23.0", package = "gstreamer-app", optional = true }
memmap2 = "0.9.4"
turbojpeg = { version = "1.1.1", optional = true }
turbojpeg = { version = "1.0.0", optional = true }

[dev-dependencies]
criterion = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion devel-x86_64.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.79
FROM rust:1.81

RUN rustup update stable

Expand Down
2 changes: 1 addition & 1 deletion kornia-serve/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use an official Rust runtime as a parent image
FROM rust:1.79-bullseye as builder
FROM rust:1.81 as builder

# Set the working directory in the image to /app
WORKDIR /app
Expand Down

0 comments on commit f4a378e

Please sign in to comment.