Skip to content

Commit

Permalink
Set MSRV to 1.47
Browse files Browse the repository at this point in the history
  • Loading branch information
blaind committed Oct 24, 2021
1 parent d25d93c commit f8f97d4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ env:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
rust: [stable, 1.47]

steps:
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webp-animation"
version = "0.4.1"
version = "0.5.0"
authors = ["Mika Vatanen <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand All @@ -11,6 +11,7 @@ A high-level Rust wrapper for decoding and encoding WebP animations
keywords = ["webp", "webp-animation", "decoder", "encoder"]
categories = ["multimedia::images", "multimedia", "api-bindings"]
edition = "2018"
rust-version = "1.47"

[dependencies]
image = { version = "0.23.14", default_features = false, optional = true }
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ std::fs::write("my_animation.webp", webp_data).unwrap();
See [docs](https://docs.rs/webp-animation/0.1.3/webp_animation/) for other encoding options, e.g.
for lossy encoding.

## Rust Version Support

The minimum supported Rust version is 1.47

## Future plans

Keep up with upstream `libwebp` changes.
Expand Down

0 comments on commit f8f97d4

Please sign in to comment.