-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,15 +4,15 @@ 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 <[email protected]>"] | ||
|
||
repository = "https://github.com/johannesvollmer/exrs" | ||
readme = "README.md" | ||
license = "BSD-3-Clause" | ||
exclude = [ "specification/*", "specification/**", "tests/images/*", "tests/images/**" ] | ||
rust-version = "1.61.0" | ||
rust-version = "1.70.0" | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } | ||
|
@@ -28,21 +28,21 @@ proc-macro = false | |
|
||
[dependencies] | ||
lebe = "^0.5.2" # generic binary serialization | ||
half = "2.1.0" # 16 bit float pixel data type | ||
half = "2.4.1" # 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 | ||
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? | ||
miniz_oxide = "^0.8.0" # zip compression for pxr24 | ||
smallvec = "^1.13.2" # make cache-friendly allocations TODO profile if smallvec is really an improvement! | ||
rayon-core = "^1.12.1" # threading for parallel compression TODO make this an optional feature? | ||
flume = { version = "^0.11.0", default-features = false } # crossbeam, but less unsafe code 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 | ||
walkdir = "2.5.0" # automatically test things for all files in a directory | ||
rand = "0.8.5" # used for fuzz testing | ||
rayon = "1.5.3" # run tests for many files in parallel | ||
rayon = "1.7.0" # run tests for many files in parallel | ||
|
||
|
||
[[bench]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters