diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2022-11-22 22:54:41 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-22 22:54:41 -0500 |
| commit | 316bda89e4a444bd6d4f4434cc3428383ecff88e (patch) | |
| tree | 08cd93bb839316e938e60f5a24810b2ce99e307f /library/alloc/src | |
| parent | 54b629285512582f9405ecfad05cb9c6acb0ecdd (diff) | |
| parent | 1a6966602a06bb85d1952027e990d72f6d01792f (diff) | |
| download | rust-316bda89e4a444bd6d4f4434cc3428383ecff88e.tar.gz rust-316bda89e4a444bd6d4f4434cc3428383ecff88e.zip | |
Rollup merge of #104647 - RalfJung:alloc-strict-provenance, r=thomcc
enable fuzzy_provenance_casts lint in liballoc and libstd r? ````@thomcc````
Diffstat (limited to 'library/alloc/src')
| -rw-r--r-- | library/alloc/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/alloc/src/lib.rs b/library/alloc/src/lib.rs index 5e13547abcb..96960d43f58 100644 --- a/library/alloc/src/lib.rs +++ b/library/alloc/src/lib.rs @@ -82,6 +82,7 @@ // // Lints: #![deny(unsafe_op_in_unsafe_fn)] +#![deny(fuzzy_provenance_casts)] #![warn(deprecated_in_future)] #![warn(missing_debug_implementations)] #![warn(missing_docs)] |
