[package]
edition = "2021"
name = "pcx"
version = "0.2.5"
authors = ["kryptan"]
build = false
exclude = [
"/test-data",
"/fuzz",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for reading & writing PCX images."
homepage = "https://github.com/kryptan/pcx"
documentation = "https://docs.rs/pcx/"
readme = "README.md"
keywords = [
"pcx",
"image",
"paintbrush",
]
license = "MIT OR Apache-2.0 OR WTFPL"
repository = "https://github.com/kryptan/pcx"
[lib]
name = "pcx"
path = "src/lib.rs"
[dependencies.byteorder]
version = "1.2.6"
[dev-dependencies.image]
version = "0.25.5"
features = ["png"]
default-features = false
[dev-dependencies.walkdir]
version = "2.2.5"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(fuzzing)"]