[package]
name = "nimage"
description = "A simple imaging library"
version = "0.1.10"
edition = "2024"
authors = ["NDRAEY <pikachu_andrey@vk.com>"]
license = "MIT"
repository = "https://github.com/NDRAEY/nimage"
categories = ["graphics", "multimedia", "no-std"]
keywords = ["canvas", "image", "no_std"]
exclude = ["static/*"]
[features]
default = ["png", "tga", "std"]
std = []
tga = ["dep:tinytga"]
png = ["dep:png"]
[dependencies]
tinytga = { version = "0.5.0", optional = true }
png = { version = "0.17.16", optional = true }
[dev-dependencies]
criterion = { version = "0.5" }
[[bench]]
name = "create_and_resize"
harness = false