Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Changelog

## [0.1.0] - 2025-03-14

- Initial release.
- Includes support for reading metadata out of TIFF files in an async way.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-tiff"
version = "0.1.0-beta.1"
version = "0.1.0"
edition = "2021"
authors = ["Kyle Barron <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -16,6 +16,8 @@ futures = "0.3.31"
jpeg = { package = "jpeg-decoder", version = "0.3.0", default-features = false }
num_enum = "0.7.3"
object_store = "0.12"
# In the future we could make this feature-flagged, but for now we depend on
# object_store which uses reqwest.
reqwest = "0.12"
thiserror = "1"
tokio = { version = "1.43.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ An async, low-level [TIFF](https://en.wikipedia.org/wiki/TIFF) reader.
- Support for user-defined decompression algorithms.
- Tile request merging and concurrency.

<!-- [Full documentation](https://docs.rs/async-tiff/). (version 0.1.0 will be published when object_store 0.12 is released.) -->
[Full documentation](https://docs.rs/async-tiff/).

## Background

Expand Down