# 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_lookup_curve" version = "0.5.1" description = "Editable lookup curve for Bevy" homepage = "https://crates.io/crates/bevy_lookup_curve" documentation = "https://docs.rs/bevy_lookup_curve" readme = "README.md" keywords = ["bevy"] license = "MIT OR Apache-2.0" repository = "https://github.com/villor/bevy_lookup_curve" [[example]] name = "dev" path = "examples/dev.rs" required-features = [ "editor_bevy", "bevy_reflect", ] [[example]] name = "animation" path = "examples/animation.rs" required-features = ["editor_egui"] [[example]] name = "egui_only" path = "examples/egui_only.rs" required-features = [ "editor_egui", "ron", ] [[example]] name = "inspector_egui" path = "examples/inspector_egui.rs" required-features = ["inspector-egui"] [[bench]] name = "knot_search" path = "benches/knot_search.rs" harness = false [dependencies.bevy-inspector-egui] version = "0.26.0" features = ["bevy_render"] optional = true default-features = false [dependencies.bevy_app] version = "0.14" optional = true default-features = false [dependencies.bevy_asset] version = "0.14" optional = true [dependencies.bevy_ecs] version = "0.14" optional = true default-features = false [dependencies.bevy_egui] version = "0.29" features = ["render"] optional = true default-features = false [dependencies.bevy_log] version = "0.14" optional = true default-features = false [dependencies.bevy_math] version = "0.14" default-features = false [dependencies.bevy_reflect] version = "0.14" optional = true default-features = false [dependencies.bevy_winit] version = "0.14" optional = true default-features = false [dependencies.egui] version = "0.28" optional = true [dependencies.egui_plot] version = "0.28" optional = true [dependencies.ron] version = "0.8" optional = true [dependencies.serde] version = "1.0" optional = true [dependencies.thiserror] version = "1.0" optional = true [dev-dependencies.bevy] version = "0.14" [dev-dependencies.bevy-inspector-egui] version = "0.26.0" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.eframe] version = "0.28" [dev-dependencies.rand] version = "0.8.5" [features] bevy_app = [ "dep:bevy_app", "dep:bevy_log", ] bevy_asset = [ "ron", "bevy_app", "bevy_reflect", "dep:bevy_asset", ] bevy_egui = [ "dep:bevy_egui", "dep:bevy_winit", "bevy_winit/x11", ] bevy_reflect = [ "dep:bevy_reflect", "bevy_math/bevy_reflect", "bevy_app?/bevy_reflect", "bevy_ecs?/bevy_reflect", ] default = [ "editor_bevy", "bevy_reflect", ] editor_bevy = [ "bevy_app", "bevy_ecs", "bevy_asset", "bevy_egui", "editor_egui", ] editor_egui = ["dep:egui"] inspector-egui = [ "bevy_reflect", "bevy_app", "bevy_ecs", "bevy_asset", "bevy_egui", "editor_egui", "dep:bevy-inspector-egui", "dep:egui_plot", ] ron = [ "serialize", "dep:ron", "dep:thiserror", ] serialize = [ "dep:serde", "bevy_math/serialize", ]