bevy_cursor 0.8.0

A bevy plugin to track information about the cursor
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_cursor"
version = "0.8.0"
authors = ["Tristan Guichaoua <tguichaoua.dev@gmail.com>"]
build = false
exclude = [
    ".github/",
    "assets/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A bevy plugin to track information about the cursor"
readme = "README.md"
keywords = [
    "bevy",
    "cursor",
    "window",
    "camera",
]
categories = ["game-engines"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tguichaoua/bevy_cursor"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
2d = []
3d = []

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

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

[[example]]
name = "multiple_windows"
path = "examples/multiple_windows.rs"
required-features = ["2d"]

[dependencies.bevy]
version = "0.18.0"
features = [
    "bevy_render",
    "bevy_window",
]
default-features = false

[dependencies.smallvec]
version = "1.11.0"
features = ["union"]

[dev-dependencies.bevy]
version = "0.18.0"
features = [
    "std",
    "async_executor",
    "bevy_log",
    "bevy_ui",
    "bevy_ui_render",
    "bevy_winit",
    "default_font",
    "png",
    "x11",
]
default-features = false

[lints.clippy]
doc_markdown = "warn"
manual_let_else = "warn"
match_same_arms = "warn"
redundant_else = "warn"
semicolon_if_nothing_returned = "warn"

[lints.rust]
missing_docs = "warn"
non_ascii_idents = "warn"
unsafe_code = "forbid"