[package]
edition = "2024"
name = "softbuf"
version = "0.1.1"
authors = ["Patrick Reese (Retroboi64) <https://github.com/Retroboi64>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A software framebuffer library with drawing primitives and platform blitting"
readme = false
license = "MIT"
repository = "https://github.com/Retroboi64/windowed"
[lib]
name = "softbuf"
path = "src/lib.rs"
[[example]]
name = "animate"
path = "examples/animate.rs"
[[example]]
name = "shapes"
path = "examples/shapes.rs"
[dependencies.numix]
version = "0.1.1"
[dependencies.raw-window-handle]
version = "0.6"
[dependencies.windowed]
version = "0.2.0"
[target.'cfg(target_os = "linux")'.dependencies.x11rb]
version = "0.13"
features = ["allow-unsafe-code"]
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3"
features = [
"wingdi",
"winuser",
"windef",
"minwindef",
]