# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.60" name = "lottieconv" version = "0.3.0" include = [ "src/**/*.rs", "bin/*.rs", "/LICENSE", "/README.md", ] autobins = false description = "Convert lottie files to WEBP or GIF" readme = "README.md" keywords = [ "lottie", "webp", "gif", "convert", ] license = "MIT" repository = "https://github.com/msrd0/rlottie-rs" [[bin]] name = "lottie2gif" path = "bin/lottie2gif.rs" required-features = [ "clap", "gif", ] [[bin]] name = "lottie2webp" path = "bin/lottie2webp.rs" required-features = [ "clap", "webp", ] [dependencies.clap] version = "4.0" features = ["derive"] optional = true [dependencies.gif_crate] version = "0.12" optional = true package = "gif" [dependencies.rgb] version = "0.8.32" default-features = false [dependencies.rlottie] version = "0.5.2" [dependencies.webp-animation] version = "0.9" optional = true [features] default = [ "gif", "webp", ] gif = ["dep:gif_crate"] serde = [ "rgb/serde", "rlottie/serde", ] webp = ["dep:webp-animation"]