# 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" name = "lcs-png-diff-rs" version = "0.1.0" authors = ["Jian Liao "] exclude = [ "tests/**/*", ".gitignore", ] description = "PNG diff tool with LCS algorithm" homepage = "https://github.com/jianliao/lcs-png-diff-rs" documentation = "https://github.com/jianliao/lcs-png-diff-rs" readme = "README.md" keywords = [ "PNG", "Bitmap", "lcs", ] license = "MIT" repository = "https://github.com/jianliao/lcs-png-diff-rs" resolver = "2" [lib] name = "lcs_png_diff" path = "src/lib.rs" [[bin]] name = "lcs-png-diff" path = "src/main.rs" required-features = ["binary"] [[bench]] name = "benchmark" harness = false [dependencies.base64] version = "0.13.0" [dependencies.clap] version = "3.1.12" features = ["derive"] [dependencies.image] version = "0.24.2" default-features = false [dependencies.rusty_pool] version = "0.7.0" default-features = false [dependencies.serde] version = "1.0.137" features = ["derive"] [dependencies.serde_json] version = "1.0.81" [dev-dependencies.criterion] version = "0.3" [features] all_image_formats = ["image/png"] binary = ["all_image_formats"] default = ["binary"]