bevy_args 4.0.0

bevy plugin to parse command line arguments and URL query parameters
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_args"
version = "4.0.0"
authors = ["mosure <mitchell@mosure.me>"]
build = false
exclude = [
    ".cargo",
    ".devcontainer",
    ".github",
    ".vscode",
    "Cargo.lock",
    "docs",
    "dist",
    "build",
    "assets",
    "credits",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "bevy plugin to parse command line arguments and URL query parameters"
homepage = "https://github.com/mosure/bevy_args"
readme = "README.md"
keywords = [
    "bevy",
    "args",
    "cli",
    "query-parameters",
]
license = "MIT"
repository = "https://github.com/mosure/bevy_args"

[features]
bevy = ["dep:bevy"]
default = ["bevy"]

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

[[example]]
name = "minimal"
path = "examples/minimal.rs"
required-features = ["bevy"]

[dependencies.bevy]
version = "0.19"
optional = true
default-features = false

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.web-sys]
version = "0.3"
features = [
    "Document",
    "Element",
    "HtmlElement",
    "Location",
    "Node",
    "Window",
]

[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"

[profile.dev]
opt-level = 1

[profile.dev.package."*"]
opt-level = 3

[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1

[profile.wasm-release]
opt-level = "z"
lto = "fat"
codegen-units = 1
inherits = "release"