# 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 = "micro_banimate" version = "0.9.2" authors = ["Louis Capitanchik "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Easily manage complex Bevy 2D sprite animations" readme = "README.md" license = "Apache-2.0" repository = "https://lab.lcr.gr/microhacks/micro-banimate" [lib] name = "micro_banimate" path = "src/lib.rs" [[example]] name = "basic" path = "examples/basic.rs" required-features = ["json_loader"] [dependencies.anyhow] version = "^1.0" [dependencies.bevy] version = "^0.14" features = [ "bevy_asset", "bevy_sprite", ] default-features = false [dependencies.serde] version = "^1.0" optional = true [dependencies.serde_json] version = "^1.0" optional = true [dependencies.toml] version = "0.8" optional = true [dev-dependencies.bevy] version = "0.14" [dev-dependencies.log] version = "0.4" [features] default = ["json_loader"] json_loader = [ "serde", "dep:serde_json", ] serde = [ "dep:serde", "bevy/serialize", ] toml_loader = [ "serde", "dep:toml", ]