bevy_mod_async 0.12.0

Ergonomic async tasks plugin for the Bevy game engine
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 = "2021"
name = "bevy_mod_async"
version = "0.12.0"
authors = ["Josh Hyatt <joshua.n.hyatt@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ergonomic async tasks plugin for the Bevy game engine"
readme = "README.md"
keywords = [
    "gamedev",
    "tasks",
    "async",
    "bevy",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jnhyatt/bevy_mod_async"

[features]
asset = ["bevy_asset"]
default = [
    "asset",
    "time",
]
time = ["bevy_time"]

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

[[example]]
name = "async_asset"
path = "examples/async_asset.rs"
required-features = ["asset"]

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

[[example]]
name = "timers"
path = "examples/timers.rs"
required-features = ["time"]

[dependencies.bevy_app]
version = "0.18"

[dependencies.bevy_asset]
version = "0.18"
optional = true

[dependencies.bevy_ecs]
version = "0.18"

[dependencies.bevy_tasks]
version = "0.18"

[dependencies.bevy_time]
version = "0.18"
optional = true

[dependencies.futures]
version = "0.3"

[dependencies.tokio]
version = "1"
features = ["sync"]

[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]

[dev-dependencies.bevy]
version = "0.18"