-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
81 lines (71 loc) · 2.24 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
78
79
80
81
[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"] }
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"
schemars = { version = "0.8.21", optional = true }
serde = { version = "1.0.210", features = ["derive"], optional = true }
serde_json = { version = "1.0.128", optional = true }
cel-interpreter = { version = "0.9.0", features = ["json"], optional = true }
tracing = "0.1.41"
strum = { version = "0.26.3", optional = true, features = ["derive"] }
semver = { version = "1.0.24", optional = true }
[features]
single_threaded_async = ["dep:async-task"]
diagram = [
"dep:cel-interpreter",
"dep:schemars",
"dep:semver",
"dep:serde",
"dep:serde_json",
"dep:strum",
]
[dev-dependencies]
async-std = { version = "1.12" }
test-log = { version = "0.2.16", features = [
"trace",
], default-features = false }
[workspace]
members = ["examples/diagram/calculator"]
[[bin]]
name = "generate_schema"
path = "src/diagram/generate_schema.rs"
required-features = ["diagram"]
doc = false