-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (42 loc) · 1.48 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
[package]
name = "bevy_impulse"
version = "0.0.2"
edition = "2021"
authors = ["Grey <[email protected]>"]
license = "Apache-2.0"
description = "Reactive programming and workflow execution for bevy"
readme = "README.md"
repository = "https://github.com/open-rmf/bevy_impulse"
keywords = ["reactive", "workflow", "behavior", "agent", "bevy"]
categories = ["science::robotics", "asynchronous", "concurrency", "game-development"]
[dependencies]
bevy_impulse_derive = { path = "macros", version = "0.0.2" }
bevy_ecs = "0.12"
bevy_utils = "0.12"
bevy_hierarchy = "0.12"
bevy_derive = "0.12"
bevy_app = "0.12"
async-task = { version = "4.7.1", optional = true }
# TODO(@mxgrey) We could probably remove bevy_tasks when the single_threaded_async
# feature is active, but we'd have to refactor some internal usage of
# bevy_tasks::Task, so we're leaving it as a mandatory dependency for now.
bevy_tasks = { version = "0.12", features = ["multi-threaded"] }
arrayvec = "0.7"
itertools = "0.13"
smallvec = "1.13"
tokio = { version = "1.39", features = ["sync"]}
futures = "0.3"
backtrace = "0.3"
anyhow = "1.0"
thiserror = "1.0"
# These dependencies are only used by the testing module.
# We may want to consider feature-gating them, but we use
# the testing module for doctests, and doctests can only
# make use of default features, so we're a bit stuck with
# these for now.
bevy_core = "0.12"
bevy_time = "0.12"
[features]
single_threaded_async = ["dep:async-task"]
[dev-dependencies]
async-std = { version = "1.12" }