From 2a20352361c57611f45dd712657b9ea7285bba46 Mon Sep 17 00:00:00 2001 From: Dominic Date: Mon, 28 Mar 2022 11:19:00 +0200 Subject: [PATCH] Release lottie2gif 0.3.1 and lottie2webp 0.1.0 --- README.md | 3 +++ lottie2gif/Cargo.toml | 2 +- lottie2webp/README.md | 18 ++++++++++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 lottie2webp/README.md diff --git a/README.md b/README.md index ee62f327..d76b54ad 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,9 @@ This repository contains the following crates: - [**lottie2gif**](lottie2gif/README.md) [![lottie2gif main branch docs](https://img.shields.io/badge/docs-main-blue.svg)](https://msrd0.github.io/rlottie-rs/doc/lottie2gif/index.html) [![lottie2gif on crates.io](https://img.shields.io/crates/v/lottie2gif.svg)](https://crates.io/crates/lottie2gif) + - [**lottie2webp**](lottie2webp/README.md) + [![lottie2webp main branch docs](https://img.shields.io/badge/docs-main-blue.svg)](https://msrd0.github.io/rlottie-rs/doc/lottie2webp/index.html) + [![lottie2webp on crates.io](https://img.shields.io/crates/v/lottie2webp.svg)](https://crates.io/crates/lottie2webp) - [**rlottie**](rlottie/README.md) [![rlottie main branch docs](https://img.shields.io/badge/docs-main-blue.svg)](https://msrd0.github.io/rlottie-rs/doc/rlottie/index.html) [![rlottie on crates.io](https://img.shields.io/crates/v/rlottie.svg)](https://crates.io/crates/rlottie) diff --git a/lottie2gif/Cargo.toml b/lottie2gif/Cargo.toml index f8056c20..00aff8ba 100644 --- a/lottie2gif/Cargo.toml +++ b/lottie2gif/Cargo.toml @@ -3,7 +3,7 @@ [package] workspace = ".." name = "lottie2gif" -version = "0.3.0" +version = "0.3.1" license = "MIT" include = ["src/**/*.rs", "/LICENSE"] diff --git a/lottie2webp/README.md b/lottie2webp/README.md new file mode 100644 index 00000000..57529308 --- /dev/null +++ b/lottie2webp/README.md @@ -0,0 +1,18 @@ +# lottie2webp [![lottie2webp on crates.io](https://img.shields.io/crates/v/lottie2webp.svg)](https://crates.io/crates/lottie2webp) [![lottie2webp on docs.rs](https://docs.rs/lottie2webp/badge.svg)](https://docs.rs/lottie2webp) [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://mit-license.org/) + +This crate can be used as a binary as well as a library. To compile it as a binary, pass `--all-features` or `--feature clap` to cargo. + +``` +lottie2webp +Convert lottie files WEBP + +USAGE: + lottie2webp [OPTIONS] + +ARGS: + The location of the lottie file + +OPTIONS: + -h, --help Print help information + -o, --out The output file +```