ftui_simd/lib.rs
1#![forbid(unsafe_code)]
2
3//! Optional optimization crate.
4//!
5//! # Role in FrankenTUI
6//! `ftui-simd` is a sandbox for safe, performance-oriented code paths. It
7//! allows experimentation with autovec-friendly loops and portable SIMD without
8//! imposing dependencies on the core crates.
9//!
10//! # How it fits in the system
11//! This crate is optional and should be wired in via feature flags. The render
12//! kernel or other performance-sensitive components can call into this crate
13//! when enabled, but the base system remains fully functional without it.
14//!
15//! Note: This project currently forbids unsafe code. This crate exists to host
16//! safe optimizations behind feature flags without impacting the rest of the
17//! workspace.