bevy_support_misc 0.9.0

My tiny common code to share between bevy game projects
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_support_misc"
version = "0.9.0"
authors = ["Trung Do <dothanhtrung@pm.me>"]
build = false
exclude = [
    "assets",
    "examples",
    "tests",
    ".cargo",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "My tiny common code to share between bevy game projects"
readme = "README.md"
keywords = ["bevy"]
categories = ["game-development"]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/245project/bevy-plugin/bevy-support-misc.git"

[features]
3d = []
bin_loader = [
    "postcard",
    "thiserror",
    "serde",
]
default = [
    "ron_loader",
    "bin_loader",
    "mini_event",
]
log = ["bevy/bevy_log"]
mini_event = [
    "bevy_rand",
    "rand",
    "bevy_auto_timer",
]
ron_loader = [
    "ron",
    "thiserror",
    "serde",
]

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

[dependencies.bevy]
version = ">=0.19"
features = [
    "bevy_ui",
    "bevy_color",
    "bevy_text",
    "bevy_state",
]
default-features = false

[dependencies.bevy_auto_timer]
version = ">=0.4"
optional = true

[dependencies.bevy_rand]
version = ">=0.15"
features = ["wyrand"]
optional = true

[dependencies.postcard]
version = "1.1"
features = ["alloc"]
optional = true

[dependencies.rand]
version = "0.10"
optional = true

[dependencies.ron]
version = "0.12"
optional = true

[dependencies.serde]
version = "1.0"
optional = true

[dependencies.thiserror]
version = "2.0"
optional = true

[dev-dependencies.bevy]
version = ">=0.19"
features = ["dynamic_linking"]