bevy/crates/bevy_core_pipeline/src
Ame 951c9bb1a2
Add [lints] table, fix adding #![allow(clippy::type_complexity)] everywhere (#10011)
# 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>
2023-11-18 20:58:48 +00:00
..
blit update shader imports (#10180) 2023-10-21 11:51:58 +00:00
bloom Use clippy::doc_markdown more. (#10286) 2023-10-27 22:49:02 +00:00
contrast_adaptive_sharpening Bind group entries (#9694) 2023-10-21 15:39:22 +00:00
core_2d Automatic batching/instancing of draw commands (#9685) 2023-09-21 22:12:34 +00:00
core_3d allow DeferredPrepass to work without other prepass markers (#10223) 2023-11-03 01:09:14 +00:00
deferred Fix deferred lighting pass values not all working on M1 in WebGL2 (#10304) 2023-10-29 16:47:48 +00:00
fullscreen_vertex_shader Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
fxaa Bind group entries (#9694) 2023-10-21 15:39:22 +00:00
prepass allow DeferredPrepass to work without other prepass markers (#10223) 2023-11-03 01:09:14 +00:00
skybox Bind group entries (#9694) 2023-10-21 15:39:22 +00:00
taa Smaller TAA fixes (#10200) 2023-10-27 23:13:14 +00:00
tonemapping StandardMaterial Light Transmission (#8015) 2023-10-31 20:59:02 +00:00
upscaling Bind group entries (#9694) 2023-10-21 15:39:22 +00:00
clear_color.rs Update default ClearColor to better match Bevy's branding (#10339) 2023-11-03 12:57:38 +00:00
lib.rs Add [lints] table, fix adding #![allow(clippy::type_complexity)] everywhere (#10011) 2023-11-18 20:58:48 +00:00
msaa_writeback.rs Bind group entries (#9694) 2023-10-21 15:39:22 +00:00