-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
77 lines (68 loc) · 2.32 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
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
76
77
[package]
name = "actuate"
version = "0.20.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A reactive user-interface framework"
repository = "https://github.com/actuate-rs/actuate"
[features]
animation = ["ecs", "dep:bevy_math", "dep:bevy_time", "dep:tokio"]
ecs = ["std", "dep:bevy_app", "dep:bevy_ecs", "dep:bevy_hierarchy", "dep:bevy_utils", "dep:bevy_winit"]
executor = ["std", "dep:tokio"]
material = ["ecs", "ui", "picking", "dep:bevy_color", "dep:bevy_input", "dep:bevy_text"]
picking = ["dep:bevy_picking"]
rt = ["executor", "tokio/rt-multi-thread"]
std = []
tracing = ["dep:tracing"]
ui = ["dep:bevy_ui"]
full = ["animation", "ecs", "material", "rt", "tracing"]
default = ["std"]
[workspace]
members = [
".",
"macros"
]
[dependencies]
actuate-macros = { version = "0.2.0", path = "macros" }
ahash = { version = "0.8.11", default-features = false }
bevy_app = { version = "0.15.0", optional = true }
bevy_color = { version = "0.15.0", optional = true }
bevy_ecs = { version = "0.15.0", optional = true }
bevy_hierarchy = { version = "0.15.0", optional = true }
bevy_input = { version = "0.15.0", optional = true }
bevy_math = { version = "0.15.0", optional = true }
bevy_picking = { version = "0.15.0", optional = true }
bevy_text = { version = "0.15.0", optional = true }
bevy_time = { version = "0.15.0", optional = true }
bevy_ui = { version = "0.15.0", optional = true }
bevy_utils = { version = "0.15.0", optional = true }
bevy_winit = { version = "0.15.0", optional = true }
crossbeam-queue = { version = "0.3.11", default-features = false, features = ["alloc"] }
futures = "0.3.31"
hashbrown = "0.15.2"
slotmap = "1.0.7"
thiserror = "2.0.3"
tracing = { version = "0.1.40", optional = true }
tokio = { version = "1.41.1", features = ["sync"], optional = true }
typeid = "1.0.2"
[dev-dependencies]
bevy = { version = "0.15.0" }
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0.215", features = ["derive"] }
tracing-subscriber = "0.3.18"
[package.metadata.docs.rs]
all-features = true
features = ["bevy_winit/x11"]
rustdoc-args = ["--cfg", "docsrs"]
[[example]]
name = "counter"
required-features = ["material"]
[[example]]
name = "http"
required-features = ["material", "rt"]
[[example]]
name = "radio_button"
required-features = ["material"]
[[example]]
name = "timer"
required-features = ["ecs"]