Skip to content

Commit

Permalink
Revert "bump version for 2.0.0, with new MSRV and new half version"
Browse files Browse the repository at this point in the history
This reverts commit 42a92aa.
  • Loading branch information
johannesvollmer committed Jul 8, 2023
1 parent e75995e commit 3d43e30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -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 = "2.0.0"
version = "1.7.0"
edition = "2018"
authors = ["johannesvollmer <johannes596@t-online.de>"]

repository = "https://github.com/johannesvollmer/exrs"
readme = "README.md"
license = "BSD-3-Clause"
exclude = [ "specification/*", "specification/**", "tests/images/*", "tests/images/**" ]
rust-version = "1.70.0"
rust-version = "1.59.0"

[badges]
maintenance = { status = "actively-developed" }
Expand All @@ -28,7 +28,7 @@ proc-macro = false

[dependencies]
lebe = "^0.5.2" # generic binary serialization
half = "^2.1.0" # 16 bit float pixel data type
half = ">=2.1.0, <2.3" # 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!
Expand Down
5 changes: 0 additions & 5 deletions README.md
Expand Up @@ -28,11 +28,6 @@ Features include:

### Current Status

MSRV Note: This crate is now on Rust `1.70.0`. If you want to use the
newest version of `exrs` with an older Rust version, you can still do that:
By specifying a version `half = "2.1.0"` in your project, the crate will work with Rust `1.59.0`.


This library has matured quite a bit, but should still be considered incomplete.
For example, deep data and DWA compression algorithms are not supported yet.

Expand Down

0 comments on commit 3d43e30

Please sign in to comment.