Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Cargo.toml dependencies and release 1.73.0 #240

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Read and write OpenEXR files without any unsafe code"
keywords = ["exr", "openexr", "file", "binary", "io"]
categories = ["encoding", "filesystem", "graphics", "multimedia"]

version = "1.72.0"
version = "1.73.0"
edition = "2018"
authors = ["johannesvollmer <johannes596@t-online.de>"]

Expand All @@ -30,13 +30,13 @@ proc-macro = false
lebe = "^0.5.2" # generic binary serialization
half = "2.1.0" # 16 bit float pixel data type
bit_field = "^0.10.1" # exr file version bit flags
miniz_oxide = "^0.7.1" # zip compression for pxr24
miniz_oxide = "^0.8.0" # zip compression for pxr24
smallvec = "^1.7.0" # make cache-friendly allocations TODO profile if smallvec is really an improvement!
rayon-core = "^1.11.0" # threading for parallel compression TODO make this an optional feature?
zune-inflate = { version = "^0.2.3", default-features = false, features = ["zlib"] } # zip decompression, faster than miniz_oxide

[dev-dependencies]
image = { version = "0.24.3", default-features = false, features = ["png"] } # used to convert one exr to some pngs
image = { version = "0.25.2", default-features = false, features = ["png"] } # used to convert one exr to some pngs

bencher = "0.1.5"
walkdir = "2.3.2" # automatically test things for all files in a directory
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ __What we can do:__
Add this to your `Cargo.toml`:
```toml
[dependencies]
exr = "1.72.0"
exr = "1.73.0"

# also, optionally add this to your crate for smaller binary size
# and better runtime performance
Expand Down
1 change: 1 addition & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Only the cropping examples use images from the source repository's test folder.

## Older Versions
The examples for any specific `exrs` version can be found on the `docs.rs` page:
- [docs.rs/crate/exr/1.73.0/source/examples/](https://docs.rs/crate/exr/1.73.0/source/examples/)
- [docs.rs/crate/exr/1.72.0/source/examples/](https://docs.rs/crate/exr/1.7.0/source/examples/)
- [docs.rs/crate/exr/1.71.0/source/examples/](https://docs.rs/crate/exr/1.7.0/source/examples/)
- [docs.rs/crate/exr/1.7.0/source/examples/](https://docs.rs/crate/exr/1.7.0/source/examples/)
Expand Down
Loading