@@ -4,7 +4,7 @@ description = "Read and write OpenEXR files without any unsafe code"
44keywords = [" exr" , " openexr" , " file" , " binary" , " io" ]
55categories = [" encoding" , " filesystem" , " graphics" , " multimedia" ]
66
7- version = " 1.3 .0"
7+ version = " 1.4 .0"
88edition = " 2018"
99authors = [
" johannesvollmer <[email protected] >" ]
1010
@@ -26,21 +26,21 @@ plugin = false
2626proc-macro = false
2727
2828[dependencies ]
29- lebe = " 0.5.1" # generic binary serialization
30- half = " 1.7.1 " # 16 bit float pixel data type
31- bit_field = " 0.10.1" # exr file version bit flags
32- deflate = " 0.9.1 " # DEFLATE compression
33- inflate = " 0.4.5" # DEFLATE decompression
34- smallvec = " 1.6.1 " # make cache-friendly allocations TODO profile if smallvec is really an improvement!
35- threadpool = " 1.8.1" # threading for parallel compression TODO make this an optional feature?
36- flume = " 0.10.5 " # crossbeam, but less unsafe code TODO make this an optional feature?
29+ lebe = " ^ 0.5.1" # generic binary serialization
30+ half = " ^1.8.2 " # 16 bit float pixel data type
31+ bit_field = " ^ 0.10.1" # exr file version bit flags
32+ deflate = " ^1.0.0 " # DEFLATE compression
33+ inflate = " ^ 0.4.5" # DEFLATE decompression
34+ smallvec = " ^1.7.0 " # make cache-friendly allocations TODO profile if smallvec is really an improvement!
35+ threadpool = " ^ 1.8.1" # threading for parallel compression TODO make this an optional feature?
36+ flume = " ^ 0.10.9 " # crossbeam, but less unsafe code TODO make this an optional feature?
3737
3838[dev-dependencies ]
3939image = { version = " 0.23.14" , features = [" png" ] } # used to convert one exr to some pngs
4040
4141bencher = " 0.1.5"
4242walkdir = " 2.3.2" # automatically test things for all files in a directory
43- rand = " 0.8.3 " # used for fuzz testing
43+ rand = " 0.8.4 " # used for fuzz testing
4444rayon = " 1.5.1" # run tests for many files in parallel
4545
4646
0 commit comments