Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
harana-bot committed Sep 21, 2023
1 parent 3a09cdd commit 400bc99
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Expand Up @@ -28,21 +28,21 @@ proc-macro = false

[dependencies]
lebe = "^0.5.2" # generic binary serialization
half = ">=2.1.0, <2.3" # 16 bit float pixel data type
bit_field = "^0.10.1" # exr file version bit flags
half = "^2.3.1" # 16 bit float pixel data type
bit_field = "^0.10.2" # 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?
smallvec = "^1.11.1" # make cache-friendly allocations TODO profile if smallvec is really an improvement!
rayon-core = "^1.12.0" # 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.24.7", 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.4.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.8.0" # run tests for many files in parallel


[[bench]]
Expand Down

0 comments on commit 400bc99

Please sign in to comment.