-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (32 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "brood"
version = "0.9.1"
authors = ["Anders Evensen"]
edition = "2021"
rust-version = "1.65.0"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/Anders429/brood"
description = "A fast and flexible entity component system library."
categories = ["data-structures", "game-development", "no-std"]
keywords = ["ecs", "entity", "component", "system", "gamedev"]
[package.metadata.docs.rs]
# To build locally:
# RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --no-deps --open
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]
[dependencies]
either = {version = "1.8.0", default-features = false}
fnv = {version = "1.0.7", default-features = false}
hashbrown = {version = "0.14.0", default-features = false, features = ["inline-more", "raw"]}
rayon = {version = "1.6.0", optional = true}
serde = {version = "1.0.148", default-features = false, features = ["alloc"], optional = true}
[dev-dependencies]
claims = "0.7.1"
rustversion = "1.0.9"
serde_assert = "0.5.0"
serde_derive = "1.0.148"
trybuild = "1.0.72"
[features]
rayon = ["dep:rayon", "hashbrown/rayon"]
serde = ["dep:serde"]