[package]
edition = "2021"
rust-version = "1.89"
name = "oxiui-render-soft"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Software CPU framebuffer backend for OxiUI (headless / ffi-audit)"
readme = "README.md"
keywords = [
"softbuffer",
"headless",
"oxiui",
"cooljapan",
"pure-rust",
]
categories = [
"rendering",
"gui",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiui"
[features]
default = ["text"]
parallel = ["dep:rayon"]
text = ["dep:oxiui-text"]
theme = ["dep:oxiui-theme"]
[lib]
name = "oxiui_render_soft"
path = "src/lib.rs"
[[test]]
name = "backend_tests"
path = "tests/backend_tests.rs"
[[test]]
name = "dirty_tests"
path = "tests/dirty_tests.rs"
[[test]]
name = "snapshot_tests"
path = "tests/snapshot_tests.rs"
[[test]]
name = "soft_tests"
path = "tests/soft_tests.rs"
[[test]]
name = "theme_integration_tests"
path = "tests/theme_integration_tests.rs"
[dependencies.oxiui-core]
version = "0.1.0"
[dependencies.oxiui-text]
version = "0.1.0"
optional = true
[dependencies.oxiui-theme]
version = "0.1.0"
optional = true
[dependencies.png]
version = "0.18.1"
[dependencies.rayon]
version = "1.12.0"
optional = true