
# Objective - Fix adding `#![allow(clippy::type_complexity)]` everywhere. like #9796 ## Solution - Use the new [lints] table that will land in 1.74 (https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#lints) - inherit lint to the workspace, crates and examples. ``` [lints] workspace = true ``` ## Changelog - Bump rust version to 1.74 - Enable lints table for the workspace ```toml [workspace.lints.clippy] type_complexity = "allow" ``` - Allow type complexity for all crates and examples ```toml [lints] workspace = true ``` --------- Co-authored-by: Martín Maita <47983254+mnmaita@users.noreply.github.com>
19 lines
348 B
Rust
19 lines
348 B
Rust
#![warn(missing_docs)]
|
|
#![deny(unsafe_code)]
|
|
//! A collection of helper types and functions for working on macros within the Bevy ecosystem.
|
|
|
|
extern crate proc_macro;
|
|
|
|
mod attrs;
|
|
mod bevy_manifest;
|
|
pub mod fq_std;
|
|
mod label;
|
|
mod shape;
|
|
mod symbol;
|
|
|
|
pub use attrs::*;
|
|
pub use bevy_manifest::*;
|
|
pub use label::*;
|
|
pub use shape::*;
|
|
pub use symbol::*;
|