mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-28 13:31:14 +00:00

### This commit does the following: - Adds `#[no_std]` to `lib.rs`. - Adds `extern crate std;` to `lib.rs`. - Updates `ratatui-core` to explicitly `use` items from std and alloc. - Prefers `use`-ing alloc over std when possible. ### Explanation: This allows usages of `std` in `ratatui-core` to be clearly pointed out and dealt with individually. Eventually, when `std` is to be feature gated, the associated commit will be much cleaner.