bevy_lagrange 0.0.3

Bevy camera controller with pan, orbit, zoom-to-fit, queued animations, and trackpad support
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_lagrange"
version = "0.0.3"
authors = ["natepiano"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bevy camera controller with pan, orbit, zoom-to-fit, queued animations, and trackpad support"
homepage = "https://github.com/natepiano/bevy_lagrange"
readme = "README.md"
keywords = [
    "bevy",
    "camera",
    "gamedev",
    "orbit",
]
categories = ["game-development"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/natepiano/bevy_lagrange"

[features]
bevy_egui = ["dep:bevy_egui"]
fit_overlay = [
    "bevy/bevy_asset",
    "bevy/bevy_gizmos",
    "bevy/bevy_mesh",
    "bevy/bevy_pbr",
    "bevy/bevy_picking",
    "bevy/bevy_state",
    "bevy/bevy_text",
    "bevy/bevy_ui",
]

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

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

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

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

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

[[example]]
name = "egui"
path = "examples/egui.rs"
required-features = ["bevy_egui"]

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

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

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

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

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

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

[[example]]
name = "showcase"
path = "examples/showcase.rs"
required-features = ["fit_overlay"]

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

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

[[example]]
name = "zoom_to_fit"
path = "examples/zoom_to_fit.rs"
required-features = ["fit_overlay"]

[dependencies.bevy]
version = "0.18"
features = [
    "bevy_camera",
    "bevy_core_pipeline",
    "bevy_log",
    "bevy_window",
]
default-features = false

[dependencies.bevy_egui]
version = "0.39"
optional = true
default-features = false

[dependencies.bevy_kana]
version = "0.0.5"
features = ["input"]

[dev-dependencies.bevy]
version = "0.18"
features = ["3d"]
default-features = false

[dev-dependencies.bevy_brp_extras]
version = "0.19.0"

[dev-dependencies.bevy_egui]
version = "0.39"
features = [
    "default_fonts",
    "render",
]
default-features = false

[dev-dependencies.bevy_window_manager]
version = "0.20.2"

[dev-dependencies.float-cmp]
version = "0.10.0"

[lints.clippy]
allow_attributes_without_reason = "deny"
expect_used = "deny"
multiple_crate_versions = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
panic = "deny"
redundant_pub_crate = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unreachable = "deny"
unwrap_used = "deny"
wildcard_imports = "allow"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.cargo]
level = "deny"
priority = -1

[lints.clippy.nursery]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "deny"
priority = -1

[lints.rust]
missing_docs = "deny"