# Objective - In #12366 `![cfg_attr(docsrs, feature(doc_auto_cfg))] `was added. But to apply it it needs `--cfg=docsrs` in rustdoc-args. ## Solution - Apply `--cfg=docsrs` to all crates and CI. I also added `[package.metadata.docs.rs]` to all crates to avoid adding code behind a feature and forget adding the metadata. Before:  After: 
		
			
				
	
	
		
			34 lines
		
	
	
		
			736 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			736 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bevy_tasks"
 | 
						|
version = "0.14.0-dev"
 | 
						|
edition = "2021"
 | 
						|
description = "A task executor for Bevy Engine"
 | 
						|
homepage = "https://bevyengine.org"
 | 
						|
repository = "https://github.com/bevyengine/bevy"
 | 
						|
license = "MIT OR Apache-2.0"
 | 
						|
keywords = ["bevy"]
 | 
						|
 | 
						|
[features]
 | 
						|
multi-threaded = []
 | 
						|
 | 
						|
[dependencies]
 | 
						|
futures-lite = "2.0.1"
 | 
						|
async-executor = "1.7.2"
 | 
						|
async-channel = "2.2.0"
 | 
						|
async-io = { version = "2.0.0", optional = true }
 | 
						|
async-task = "4.2.0"
 | 
						|
concurrent-queue = "2.0.0"
 | 
						|
 | 
						|
[target.'cfg(target_arch = "wasm32")'.dependencies]
 | 
						|
wasm-bindgen-futures = "0.4"
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
web-time = { version = "0.2" }
 | 
						|
 | 
						|
[lints]
 | 
						|
workspace = true
 | 
						|
 | 
						|
[package.metadata.docs.rs]
 | 
						|
rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
 | 
						|
all-features = true
 |