[package]
edition = "2021"
name = "cega"
version = "0.2.2"
exclude = [
".rusty-hook.toml",
".gitignore",
]
description = "CGA and EGA binary image file processing library"
readme = "README.md"
keywords = [
"gamedev",
"graphics",
]
categories = ["command-line-utilities"]
license = "Unlicense"
repository = "https://github.com/knzconnor/cega"
[[bin]]
name = "cega"
path = "src/main.rs"
required-features = ["terminal"]
[dependencies.bitvec]
version = "1"
[dependencies.clap]
version = "4.5.7"
features = ["derive"]
optional = true
[dependencies.factor]
version = "0.4.0"
[dependencies.image]
version = "0.25.1"
optional = true
[dependencies.sdl2]
version = "0.37.0"
features = ["gfx"]
optional = true
default-features = false
[dev-dependencies.rusty-hook]
version = "^0.11.2"
[features]
default = [
"terminal",
"sdl2",
"png",
]
png = ["image"]
terminal = ["clap"]