* move print diagnostics to log * entity count diagnostic * asset count diagnostic * remove useless `pub`s * use `BTreeMap` instead of `HashMap` * get entity count from world * keep ordered list of diagnostics
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bevy_asset"
 | 
						|
version = "0.4.0"
 | 
						|
edition = "2018"
 | 
						|
authors = [
 | 
						|
    "Bevy Contributors <bevyengine@gmail.com>",
 | 
						|
    "Carter Anderson <mcanders1@gmail.com>",
 | 
						|
]
 | 
						|
description = "Provides asset functionality for Bevy Engine"
 | 
						|
homepage = "https://bevyengine.org"
 | 
						|
repository = "https://github.com/bevyengine/bevy"
 | 
						|
license = "MIT"
 | 
						|
keywords = ["bevy"]
 | 
						|
 | 
						|
[features]
 | 
						|
default = ["filesystem_watcher"]
 | 
						|
filesystem_watcher = ["notify"]
 | 
						|
 | 
						|
[dependencies]
 | 
						|
# bevy
 | 
						|
bevy_app = { path = "../bevy_app", version = "0.4.0" }
 | 
						|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.4.0" }
 | 
						|
bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" }
 | 
						|
bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] }
 | 
						|
bevy_tasks = { path = "../bevy_tasks", version = "0.4.0" }
 | 
						|
bevy_utils = { path = "../bevy_utils", version = "0.4.0" }
 | 
						|
 | 
						|
# other
 | 
						|
serde = { version = "1", features = ["derive"] }
 | 
						|
ron = "0.6.2"
 | 
						|
crossbeam-channel = "0.4.4"
 | 
						|
anyhow = "1.0"
 | 
						|
thiserror = "1.0"
 | 
						|
downcast-rs = "1.2.0"
 | 
						|
notify = { version = "5.0.0-pre.2", optional = true }
 | 
						|
parking_lot = "0.11.0"
 | 
						|
rand = "0.7.3"
 | 
						|
 | 
						|
[target.'cfg(target_arch = "wasm32")'.dependencies]
 | 
						|
wasm-bindgen = { version = "0.2" }
 | 
						|
web-sys = { version = "0.3", features = ["Request", "Window", "Response"]}
 | 
						|
wasm-bindgen-futures = "0.4"
 | 
						|
js-sys = "0.3"
 | 
						|
 | 
						|
[target.'cfg(target_os = "android")'.dependencies]
 | 
						|
ndk-glue = { version = "0.2" }
 |