# 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 = "2021" name = "bevy_schedules_ext" version = "0.14.1" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A Bevy plugin for expanding the use of schedules." readme = "README.md" keywords = [ "bevy", "schedules", "plugin", "ecs", ] categories = [ "game-development", "game-engines", ] license = "MIT OR Apache-2.0" repository = "https://github.com/vonforum/bevy_schedules_ext" [lib] name = "bevy_schedules_ext" path = "src/lib.rs" [[example]] name = "nested_schedules" path = "examples/nested_schedules.rs" required-features = [ "nesting", "app_ext", ] [[example]] name = "states" path = "examples/states.rs" required-features = [ "states", "app_ext", ] [dependencies.bevy_app] version = "0.14.1" optional = true default-features = false [dependencies.bevy_ecs] version = "0.14.1" default-features = false [dependencies.bevy_state] version = "0.14.1" optional = true default-features = false [dependencies.bevy_utils] version = "0.14.1" optional = true default-features = false [features] app_ext = [ "dep:bevy_app", "bevy_state?/bevy_app", ] containers = ["dep:bevy_utils"] default = [ "app_ext", "nesting", "states", ] nesting = [ "containers", "dep:bevy_utils", ] states = ["dep:bevy_state"]