-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from johannesvollmer/fix-int-rect-#141
Fix int rect #141
- Loading branch information
Showing
12 changed files
with
332 additions
and
80 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,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.3.0" | ||
version = "1.4.0" | ||
edition = "2018" | ||
authors = ["johannesvollmer <[email protected]>"] | ||
|
||
|
@@ -26,21 +26,21 @@ plugin = false | |
proc-macro = false | ||
|
||
[dependencies] | ||
lebe = "0.5.1" # generic binary serialization | ||
half = "1.7.1" # 16 bit float pixel data type | ||
bit_field = "0.10.1" # exr file version bit flags | ||
deflate = "0.9.1" # DEFLATE compression | ||
inflate = "0.4.5" # DEFLATE decompression | ||
smallvec = "1.6.1" # make cache-friendly allocations TODO profile if smallvec is really an improvement! | ||
threadpool = "1.8.1" # threading for parallel compression TODO make this an optional feature? | ||
flume = "0.10.5" # crossbeam, but less unsafe code TODO make this an optional feature? | ||
lebe = "^0.5.1" # generic binary serialization | ||
half = "^1.8.2" # 16 bit float pixel data type | ||
bit_field = "^0.10.1" # exr file version bit flags | ||
deflate = "^1.0.0" # DEFLATE compression | ||
inflate = "^0.4.5" # DEFLATE decompression | ||
smallvec = "^1.7.0" # make cache-friendly allocations TODO profile if smallvec is really an improvement! | ||
threadpool = "^1.8.1" # threading for parallel compression TODO make this an optional feature? | ||
flume = "^0.10.9" # crossbeam, but less unsafe code TODO make this an optional feature? | ||
|
||
[dev-dependencies] | ||
image = { version = "0.23.14", 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 | ||
rand = "0.8.3" # used for fuzz testing | ||
rand = "0.8.4" # used for fuzz testing | ||
rayon = "1.5.1" # run tests for many files in parallel | ||
|
||
|
||
|
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
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
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
Oops, something went wrong.