bevy_hotpatching_experiments 0.4.0

Hotpatch your Bevy systems, allowing you to change their code while the app is running and directly seeing the results!
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "bevy_hotpatching_experiments"
version = "0.4.0"
authors = ["Jan Hohenheim <jan@hohenheim.ch>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hotpatch your Bevy systems, allowing you to change their code while the app is running and directly seeing the results!"
readme = "readme.md"
keywords = [
    "bevy",
    "hotpatch",
    "subsecond",
    "dioxus",
]
categories = ["game-development"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/janhohenheim/bevy_hotpatching_experiments"

[lib]
name = "bevy_hotpatching_experiments"
path = "src/lib.rs"

[[example]]
name = "add_systems"
path = "examples/add_systems.rs"

[[example]]
name = "component_migration"
path = "examples/component_migration.rs"

[[example]]
name = "minimal"
path = "examples/minimal.rs"

[[example]]
name = "n_body_simulation"
path = "examples/n_body_simulation.rs"

[[example]]
name = "observer"
path = "examples/observer.rs"

[[example]]
name = "patch_on_update"
path = "examples/patch_on_update.rs"

[[example]]
name = "patch_signature"
path = "examples/patch_signature.rs"

[[example]]
name = "rerun_setup"
path = "examples/rerun_setup.rs"

[[test]]
name = "compile_change_signature"
path = "tests/compile_change_signature.rs"

[[test]]
name = "compile_hot"
path = "tests/compile_hot.rs"

[[test]]
name = "compile_rerun"
path = "tests/compile_rerun.rs"

[dependencies.bevy_app]
version = "0.18"

[dependencies.bevy_derive]
version = "0.18"

[dependencies.bevy_ecs]
version = "0.18"

[dependencies.bevy_ecs_macros]
version = "0.18"

[dependencies.bevy_hotpatching_experiments_macros]
version = "0.1.9"

[dependencies.bevy_internal]
version = "0.18"
features = ["track_location"]

[dependencies.bevy_log]
version = "0.18"

[dependencies.bevy_platform]
version = "0.18"

[dependencies.bevy_reflect]
version = "0.18"

[dependencies.bevy_utils]
version = "0.18"

[dependencies.crossbeam-channel]
version = "0.5.15"

[dependencies.dioxus-devtools]
version = "0.7.3"

[dependencies.send_wrapper]
version = "0.6.0"

[dev-dependencies.bevy]
version = "0.18"
features = [
    "bevy_ui_debug",
    "track_location",
]

[target.'cfg(target_arch = "wasm32")'.dependencies.dioxus-cli-config]
version = "0.7.3"
features = ["web"]

[target.'cfg(target_arch = "wasm32")'.dependencies.serde_json]
version = "1.0"

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3.85"
features = [
    "Window",
    "Location",
    "CloseEvent",
    "MessageEvent",
    "WebSocket",
]

[lints.clippy]
nonstandard_macro_braces = "warn"
too_many_arguments = "allow"
type_complexity = "allow"

[profile.android-dev]
inherits = "dev"

[profile.server-dev]
inherits = "dev"

[profile.wasm-dev]
opt-level = 1
inherits = "dev"