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