chore(lint): add std instead of core/alloc lints to ratatui-widgets (#1763)

Resolves #1761
This commit is contained in:
Jagoda Estera Ślązak
2025-04-15 18:21:46 +02:00
committed by GitHub
parent a42a17e184
commit b4a71e5fd5

View File

@@ -81,6 +81,9 @@
//! This project is licensed under the MIT License. See the [LICENSE](../LICENSE) file for details.
#![no_std]
#![warn(clippy::std_instead_of_core)]
#![warn(clippy::std_instead_of_alloc)]
#![warn(clippy::alloc_instead_of_core)]
extern crate alloc;