Remove redundant doc_auto_config (#12682)

# Objective
CI on main has been failing for the following reason:
```
error[E0636]: the feature `doc_auto_cfg` has already been declared
  --> src/lib.rs:48:29
   |
48 | #![cfg_attr(docsrs, feature(doc_auto_cfg))]
   |                             ^^^^^^^^^^^^
```

## Solution
Remove the redundant attribute.
This commit is contained in:
James Liu 2024-03-28 19:02:44 -07:00 committed by GitHub
parent c971b45361
commit ac4b9beb00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,7 +45,6 @@
html_logo_url = "https://bevyengine.org/assets/icon.png",
html_favicon_url = "https://bevyengine.org/assets/icon.png"
)]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
pub use bevy_internal::*;