Skip to content

Commit

Permalink
feat: major update thiserror & fast_image_resize
Browse files Browse the repository at this point in the history
  • Loading branch information
AzHicham committed Nov 11, 2024
1 parent ba41816 commit 7dc365f
Show file tree
Hide file tree
Showing 8 changed files with 76 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUST_VERSION: 1.77.0
RUST_VERSION: 1.81.0

permissions:
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUST_VERSION: 1.77.0
RUST_VERSION: 1.81.0

jobs:
coverage:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUST_VERSION: 1.77.0
RUST_VERSION: 1.81.0

jobs:
publish:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUST_VERSION: 1.77.0
RUST_VERSION: 1.81.0

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

### Features

* MSRV 1.77.0 ([2cf9417](https://github.com/AzHicham/openslide-rs/commit/2cf941703440d41799f56c05bc0496d8afeee96f))
* MSRV 1.81.0 ([2cf9417](https://github.com/AzHicham/openslide-rs/commit/2cf941703440d41799f56c05bc0496d8afeee96f))
* update fast image resize ([#167](https://github.com/AzHicham/openslide-rs/issues/167)) ([f8a8889](https://github.com/AzHicham/openslide-rs/commit/f8a8889df0696a81240c70b4878f7d20752e2460))


Expand Down
106 changes: 63 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
keywords = ["openslide", "histopathology", "microscopy"]
categories = ["science"]
license = "MIT/Apache-2.0"
rust-version = "1.77.0"
rust-version = "1.81.0"

[features]
default = ["deepzoom"]
Expand All @@ -20,16 +20,16 @@ openslide4 = []

[dependencies]
libc = "0.2"
thiserror = "1.0"
regex = "1.10"
lazy_static = "1.5"
openslide-sys = { version = "1.0.7" }
thiserror = "2"
regex = "1"
lazy_static = "1"
openslide-sys = { version = "1" }
image = { version = "0.25", optional = true, default-features = false}
fast_image_resize = { version = "4.2", features = ["image"], optional = true}
fast_image_resize = { version = "5", features = ["image"], optional = true}

[dev-dependencies]
rstest = "0.23"
assert_approx_eq = "1.1"
assert_approx_eq = "1"
bencher = "0.1"
version-compare = "0.2"

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.77.0"
channel = "1.81.0"
components = ["rustfmt", "clippy"]
profile = "default"

0 comments on commit 7dc365f

Please sign in to comment.