blittle 0.5.0

A fast little blitter
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 = "2024"
name = "blittle"
version = "0.5.0"
authors = ["Esther Alter <subalterngames@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast little blitter"
readme = "README.md"
keywords = [
    "blitting",
    "image",
    "sprite",
    "gamedev",
    "graphics",
]
categories = [
    "game-development",
    "graphics",
    "rendering",
]
license-file = "LICENSE"
repository = "https://github.com/subalterngames/blittle"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
png = ["dep:png"]
serde = [
    "dep:serde",
    "glam/serde",
]
softbuffer = [
    "dep:raw-window-handle",
    "dep:softbuffer",
]

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

[[bench]]
name = "convert"
path = "benches/convert.rs"
harness = false

[[bench]]
name = "crates"
path = "benches/crates.rs"
harness = false

[[bench]]
name = "mask"
path = "benches/mask.rs"
harness = false

[dependencies.bytemuck]
version = "1.25.0"

[dependencies.glam]
version = "0.32.1"
features = ["bytemuck"]

[dependencies.png]
version = "0.18.1"
optional = true

[dependencies.raw-window-handle]
version = "0.6.2"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.softbuffer]
version = "0.4.8"
optional = true

[dependencies.thiserror]
version = "2.0.18"

[dev-dependencies.blit]
version = "0.8.5"

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.sdl2]
version = "0.38.0"