Skip to content
This repository has been archived by the owner on Sep 8, 2021. It is now read-only.

Update arrayvec to 0.5 and bump version #16

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "immeta"
version = "0.4.0"
version = "0.4.1"
authors = ["Vladimir Matveev <[email protected]>"]
description = "An image metadata parsing library"
license = "MIT"
Expand All @@ -12,4 +12,4 @@ keywords = ["image", "metadata"]
[dependencies]
byteorder = "1.0"
num-traits = "0.2"
arrayvec = "0.4"
arrayvec = "0.5"
12 changes: 10 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ immeta, an image metadata inspection library in Rust
[travis]: https://img.shields.io/travis/netvl/immeta.svg?style=flat-square
[crates]: https://img.shields.io/crates/v/immeta.svg?style=flat-square

[Documentation](https://netvl.github.io/immeta/)
[Documentation](https://docs.rs/immeta/)

immeta is an image metadata processing library. It allows you to inspect metadata, that is,
image dimensions, color information, etc. of various image formats.
Expand All @@ -28,14 +28,22 @@ Just add a dependency to your `Cargo.toml`:

```toml
[dependencies]
immeta = "0.3"
immeta = "0.4"
```

You can see an example on how to use it in `tests/test.rs`.


## Changelog

### Version 0.4.1

* Updated arrayvec dependency to 0.5.

### Version 0.4.0

* Updated num-traits dependency to 0.2.

### Version 0.3.6

* Updated arrayvec dependency to 0.4.
Expand Down