mirror of
https://github.com/Lokathor/bytemuck.git
synced 2024-11-21 14:22:26 +00:00
Address unexpected_cfgs
warnings instead of allowing the lint (#243)
This commit is contained in:
parent
89885d160a
commit
f9f7bb10b3
@ -49,6 +49,9 @@ nightly_docs = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
bytemuck_derive = { version = "1.4", path = "derive", optional = true }
|
bytemuck_derive = { version = "1.4", path = "derive", optional = true }
|
||||||
|
|
||||||
|
[lints.rust]
|
||||||
|
unexpected_cfgs = { level = "deny", check-cfg = ['cfg(target_arch, values("spirv"))'] }
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
# Note(Lokathor): Don't use all-features or it would use `unsound_ptr_pod_impl` too.
|
# Note(Lokathor): Don't use all-features or it would use `unsound_ptr_pod_impl` too.
|
||||||
features = [
|
features = [
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
#![no_std]
|
#![no_std]
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
#![allow(unexpected_cfgs)]
|
|
||||||
#![allow(clippy::match_like_matches_macro)]
|
#![allow(clippy::match_like_matches_macro)]
|
||||||
#![allow(clippy::uninlined_format_args)]
|
#![allow(clippy::uninlined_format_args)]
|
||||||
#![cfg_attr(feature = "nightly_docs", feature(doc_cfg))]
|
#![cfg_attr(feature = "nightly_docs", feature(doc_cfg))]
|
||||||
|
Loading…
Reference in New Issue
Block a user