# 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_pixel_buffer" version = "0.8.2" authors = ["Francisco J. Sánchez "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A library to draw pixels in bevy" readme = "README.md" keywords = [ "bevy", "2D", "framebuffer", "pixels", "gamedev", ] categories = [ "graphics", "rendering", "game-development", ] license = "MIT" repository = "https://github.com/Zheoni/bevy_pixel_buffer" [package.metadata.docs.rs] all-features = true features = ["bevy/x11"] [lib] name = "bevy_pixel_buffer" path = "src/lib.rs" [[example]] name = "basic" path = "examples/basic.rs" [[example]] name = "basic_egui" path = "examples/basic_egui.rs" required-features = ["egui"] [[example]] name = "bundle" path = "examples/bundle.rs" [[example]] name = "custom_sprite" path = "examples/custom_sprite.rs" [[example]] name = "edit_transform" path = "examples/edit_transform.rs" [[example]] name = "fill_egui" path = "examples/fill_egui.rs" required-features = ["egui"] [[example]] name = "fill_window" path = "examples/fill_window.rs" [[example]] name = "game_of_life" path = "examples/game_of_life.rs" [[example]] name = "mandelbrot_set" path = "examples/mandelbrot_set.rs" required-features = ["egui"] [[example]] name = "mandelbrot_set_cpu" path = "examples/mandelbrot_set_cpu.rs" required-features = ["egui"] [[example]] name = "multiple_buffers" path = "examples/multiple_buffers.rs" required-features = ["egui"] [[example]] name = "resize" path = "examples/resize.rs" [[example]] name = "single_pixel" path = "examples/single_pixel.rs" [dependencies.bevy] version = "0.14" features = [ "bevy_render", "bevy_sprite", "bevy_asset", "bevy_core_pipeline", ] default-features = false [dependencies.bevy_egui] version = "0.30" optional = true [dependencies.bytemuck] version = "1.13" features = ["derive"] [dependencies.rand] version = "0.8" optional = true [dependencies.rayon] version = "1.5" optional = true [dependencies.thiserror] version = "1.0" [dev-dependencies.bevy] version = "0.14" features = [ "x11", "bevy_winit", ] default-features = false [features] default = [ "rayon", "rand", ] egui = ["dep:bevy_egui"] rand = ["dep:rand"] rayon = ["dep:rayon"]