forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (59 loc) · 2 KB
/
Cargo.toml
File metadata and controls
65 lines (59 loc) · 2 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
[package]
name = "bevy_remote"
version = "0.19.0-dev"
edition = "2024"
description = "The Bevy Remote Protocol"
homepage = "https://bevy.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
keywords = ["bevy"]
[features]
default = ["http", "bevy_asset", "bevy_render"]
http = [
"dep:async-io",
"dep:hyper",
"dep:smol-hyper",
"dep:http-body-util",
"bevy_tasks/async-io",
]
bevy_asset = ["dep:bevy_asset"]
bevy_render = ["dep:bevy_render"]
[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.19.0-dev" }
bevy_color = { path = "../bevy_color", version = "0.19.0-dev" }
bevy_derive = { path = "../bevy_derive", version = "0.19.0-dev" }
bevy_dev_tools = { path = "../bevy_dev_tools", version = "0.19.0-dev", features = [
"schedule_data",
] }
bevy_ecs = { path = "../bevy_ecs", version = "0.19.0-dev", features = [
"serialize",
] }
bevy_reflect = { path = "../bevy_reflect", version = "0.19.0-dev" }
bevy_render = { path = "../bevy_render", version = "0.19.0-dev", optional = true }
bevy_tasks = { path = "../bevy_tasks", version = "0.19.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.19.0-dev", features = [
"debug",
] }
bevy_platform = { path = "../bevy_platform", version = "0.19.0-dev", default-features = false, features = [
"std",
"serialize",
] }
bevy_asset = { path = "../bevy_asset", version = "0.19.0-dev", optional = true }
bevy_log = { path = "../bevy_log", version = "0.19.0-dev" }
# other
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.140"
async-channel = "2"
# dependencies that will not compile on wasm
[target.'cfg(not(target_family = "wasm"))'.dependencies]
async-io = { version = "2", optional = true }
hyper = { version = "1", optional = true, features = ["server", "http1"] }
smol-hyper = { version = "0.1", optional = true }
http-body-util = { version = "0.1", optional = true }
[lints]
workspace = true
[package.metadata.docs.rs]
rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
all-features = true