-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (57 loc) · 2.01 KB
/
Cargo.toml
File metadata and controls
67 lines (57 loc) · 2.01 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
[workspace]
members = [".", "examples/*", "macros"]
[package]
name = "bevy_hotpatching_experiments"
version = "0.4.0"
edition = "2024"
authors = ["Jan Hohenheim <jan@hohenheim.ch>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TheBevyFlock/bevy_hotpatching_experiments"
description = "Hotpatch your Bevy systems, allowing you to change their code while the app is running and directly seeing the results!"
keywords = ["bevy", "hotpatch", "subsecond", "dioxus"]
readme = "readme.md"
categories = ["game-development"]
[dependencies]
bevy_ecs = { version = "0.18" }
bevy_log = { version = "0.18" }
bevy_app = { version = "0.18" }
bevy_derive = { version = "0.18" }
bevy_platform = { version = "0.18" }
bevy_ecs_macros = { version = "0.18" }
bevy_reflect = { version = "0.18" }
bevy_utils = { version = "0.18" }
bevy_internal = { version = "0.18", features = ["track_location"] }
dioxus-devtools = "0.7.3"
bevy_hotpatching_experiments_macros = { path = "macros", version = "0.1.9" }
crossbeam-channel = "0.5.15"
send_wrapper = "0.6.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
dioxus-cli-config = { version = "0.7.3", features = ["web"] }
serde_json = { version = "1.0" }
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3.85"
features = [
"Window",
"Location",
"CloseEvent",
"MessageEvent",
"WebSocket"
]
[dev-dependencies]
bevy = { version = "0.18", features = ["bevy_ui_debug", "track_location"] }
[lints.clippy]
# Bevy supplies arguments to systems via dependency injection, so it's natural for systems to
# request more than 7 arguments, which would undesirably trigger this lint.
too_many_arguments = "allow"
# Queries may access many components, which would undesirably trigger this lint.
type_complexity = "allow"
# Make sure macros use their standard braces, such as `[]` for `bevy_ecs::children!`.
nonstandard_macro_braces = "warn"
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"