-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (63 loc) · 1.82 KB
/
Copy pathCargo.toml
File metadata and controls
75 lines (63 loc) · 1.82 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "bevy_alchemy"
version = "0.6.0"
edition = "2024"
description = "An experimental, status effects-as-entities system for Bevy."
categories = ["game-development"]
keywords = ["game", "gamedev", "bevy", "status", "effect"]
repository = "https://tangled.org/alephcubed.com/bevy_alchemy"
license = "MIT OR Apache-2.0"
authors = ["AlephCubed"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
bevy_app = { version = "0.19", default-features = false, features = [
"bevy_reflect",
] }
bevy_ecs = { version = "0.19", default-features = false, features = [
"bevy_reflect",
] }
bevy_log = { version = "0.19", default-features = false }
bevy_reflect = { version = "0.19", default-features = false }
bevy_time = { version = "0.19", default-features = false, features = [
"bevy_reflect",
] }
bevy_utils = { version = "0.19", default-features = false }
[dev-dependencies]
bevy = "0.19"
bevy_auto_plugin = { version = "0.11" }
criterion = { version = "0.8" }
immediate_stats = { version = "0.6", features = ["bevy_auto_plugin"] }
[lints.rust]
missing_docs = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(docsrs_dep)'] }
unsafe_op_in_unsafe_fn = "warn"
unused_qualifications = "warn"
[[example]]
name = "poison"
path = "examples/poison.rs"
[[example]]
name = "poison_falloff"
path = "examples/poison_falloff.rs"
[[example]]
name = "decaying_speed"
path = "examples/immediate_stats/decaying_speed.rs"
[[example]]
name = "decaying_speed_auto_plugin"
path = "examples/immediate_stats/decaying_speed_auto_plugin.rs"
[[bench]]
name = "baseline"
path = "benches/baseline.rs"
harness = false
[[bench]]
name = "stack_mode"
path = "benches/stack_mode.rs"
harness = false
[[bench]]
name = "insert_mode"
path = "benches/insert_mode.rs"
harness = false
[[bench]]
name = "merge_mode"
path = "benches/merge_mode.rs"
harness = false