43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bevy_hecs"
 | 
						|
version = "0.1.0"
 | 
						|
description = "Bevy fork of hecs: a fast, minimal, and ergonomic entity-component-system"
 | 
						|
authors = [
 | 
						|
    "Benjamin Saunders <ben.e.saunders@gmail.com>",
 | 
						|
    "Bevy Contributors <bevyengine@gmail.com>",
 | 
						|
    "Carter Anderson <mcanders1@gmail.com>"]
 | 
						|
edition = "2018"
 | 
						|
license = "Apache-2.0"
 | 
						|
repository = "https://github.com/Ralith/hecs"
 | 
						|
readme = "README.md"
 | 
						|
keywords = ["ecs", "entity"]
 | 
						|
categories = ["data-structures", "game-engines", "no-std"]
 | 
						|
 | 
						|
[package.metadata.docs.rs]
 | 
						|
all-features = true
 | 
						|
 | 
						|
[badges]
 | 
						|
maintenance = { status = "actively-developed" }
 | 
						|
 | 
						|
[features]
 | 
						|
default = ["std"]
 | 
						|
std = []
 | 
						|
# Enables derive(Bundle)
 | 
						|
macros = ["bevy_hecs_macros", "lazy_static"]
 | 
						|
serialize = ["serde"]
 | 
						|
 | 
						|
[dependencies]
 | 
						|
bevy_hecs_macros = { path = "macros", version = "0.1.0", optional = true }
 | 
						|
hashbrown = { version = "0.8.0", default-features = false, features = ["ahash", "inline-more"] }
 | 
						|
lazy_static = { version = "1.4.0", optional = true, features = ["spin_no_std"] }
 | 
						|
serde = { version = "1", features = ["derive"], optional = true}
 | 
						|
rand = "0.7.3"
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
bencher = "0.1.5"
 | 
						|
 | 
						|
[[bench]]
 | 
						|
name = "bench"
 | 
						|
harness = false
 | 
						|
required-features = ["macros"]
 |