pixtra 0.2.6

Pixtra aims to be a very simple and easy-to-use image manipulation tool by being opionated and contain a lot of examples
Documentation
# 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.6"
authors = ["Mads Ravn <madsravn@gmail.com>"]
build = false
include = [
    "src/**/*",
    "Cargo.toml",
    "GPLv3-license",
    "README.md",
    "examples/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"

[features]
pixtra = []

[lib]
name = "pixtra"
path = "src/lib.rs"

[[bin]]
name = "pixtra"
path = "src/bin/main.rs"

[[example]]
name = "advanced-filters"
path = "examples/advanced-filters.rs"
test = true

[[example]]
name = "count-and-replace"
path = "examples/count-and-replace.rs"
test = true

[[example]]
name = "create-image"
path = "examples/create-image.rs"
test = true

[[example]]
name = "draw-on-flamingo"
path = "examples/draw-on-flamingo.rs"
test = true

[[example]]
name = "feature-extraction"
path = "examples/feature-extraction.rs"
test = true

[[example]]
name = "filling"
path = "examples/filling.rs"
test = true

[[example]]
name = "find-islands"
path = "examples/find-islands.rs"

[[example]]
name = "flipping-and-flopping"
path = "examples/flipping-and-flopping.rs"
test = true

[[example]]
name = "pixel-builder"
path = "examples/pixel-builder.rs"
test = true

[[example]]
name = "quadtrees"
path = "examples/quadtrees.rs"

[[example]]
name = "rotations"
path = "examples/rotations.rs"
test = true

[[example]]
name = "simple-filters"
path = "examples/simple-filters.rs"
test = true

[[example]]
name = "vertical-and-horizontal-chunks"
path = "examples/vertical-and-horizontal-chunks.rs"
test = true

[dependencies.image]
version = "0.25.10"

[dependencies.num]
version = "0.4.3"

[dependencies.rand]
version = "0.10.2"
features = ["sys_rng"]

[profile.release]
debug = 1