# 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 = "pixtra" version = "0.2.5" authors = ["Mads Ravn "] include = [ "src/**/*", "Cargo.toml", "GPLv3-license", "README.md", "examples/**/*", ] description = "Pixtra aims to be a very simple and easy-to-use image manipulation tool by being opionated and contain a lot of examples" readme = "README.md" keywords = [ "pixels", "image", "graphics", "tool", ] categories = [ "multimedia::images", "multimedia::encoding", ] license = "GPL-3.0" repository = "https://github.com/madsravn/pixtra" [profile.release] debug = 1 [lib] name = "pixtra" path = "src/lib.rs" [[bin]] name = "pixtra" path = "src/bin/main.rs" [[example]] name = "create-image" test = true [[example]] name = "filling" test = true [[example]] name = "count-and-replace" test = true [[example]] name = "simple-filters" test = true [[example]] name = "advanced-filters" test = true [[example]] name = "pixel-builder" test = true [[example]] name = "flipping-and-flopping" test = true [[example]] name = "draw-on-flamingo" test = true [[example]] name = "vertical-and-horizontal-chunks" test = true [[example]] name = "rotations" test = true [dependencies.image] version = "0.24.3" [dependencies.num] version = "0.4.0" [dependencies.rand] version = "0.8.5" [features] pixtra = []