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

Resolves #1752
This commit is contained in:
Jagoda Estera Ślązak 2025-04-04 12:59:22 +02:00 committed by GitHub
parent 3d5b250e74
commit cef617cc35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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