Skip to content

Commit

Permalink
release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Nov 7, 2021
1 parent cb90e52 commit 9cf7f66
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ members = [".", "./sys", "./lottie2gif"]
[package]
name = "rlottie"
version = "0.1.0"
publish = false

license = "MIT"
include = ["src/**/*.rs", "/LICENSE"]

description = "A platform independent standalone library that plays Lottie Animation"
repository = "https://github.com/msrd0/rlottie-rs"

edition = "2021"
rust-version = "1.56"
Expand Down
14 changes: 10 additions & 4 deletions lottie2gif/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,21 @@
workspace = ".."
name = "lottie2gif"
version = "0.1.0"
publish = false

license = "MIT"
include = ["src/**/*.rs", "/LICENSE"]

description = "Convert lottie files to GIF"
repository = "https://github.com/msrd0/rlottie-rs"

edition = "2021"
rust-version = "1.56"
autobins = false

[[bin]]
name = "lottie2gif"
required-features = ["clap"]

[dependencies]
clap = "=3.0.0-beta.5"
clap = { version = "=3.0.0-beta.5", optional = true }
gif = "0.11.3"
rlottie = { path = ".." }
rlottie = { path = "..", version = "0.1" }
1 change: 1 addition & 0 deletions lottie2gif/LICENSE
5 changes: 3 additions & 2 deletions sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
workspace = ".."
name = "rlottie-sys"
version = "0.1.0"
publish = false

license = "MIT"
include = ["src/**/*.rs", "/build.rs", "/wrapper.h", "/LICENSE"]

description = "A platform independent standalone library that plays Lottie Animation"
repository = "https://github.com/msrd0/rlottie-rs"

edition = "2021"
rust-version = "1.56"
Expand Down
1 change: 1 addition & 0 deletions sys/LICENSE

0 comments on commit 9cf7f66

Please sign in to comment.