# 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 = "pixel_loop" version = "0.3.0" authors = ["Jakob Westhoff "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A pixel based drawing engine based on the idea of a self stabilizing update loop." documentation = "https://docs.rs/pixel_loop" readme = "README.md" license = "MIT" repository = "https://github.com/jakobwesthoff/pixel_loop" [profile.dev] opt-level = 1 [profile.dev.package."*"] opt-level = 3 [lib] name = "pixel_loop" path = "src/pixel_loop/lib.rs" [dependencies.anyhow] version = "1.0.92" [dependencies.crossterm] version = "0.28.1" optional = true [dependencies.pixels] version = "0.13.0" optional = true [dependencies.rand] version = "0.8.5" [dependencies.rand_xoshiro] version = "0.6.0" [dependencies.stb_image] version = "0.3.0" optional = true [dependencies.winit] version = "0.28.0" optional = true [dependencies.winit_input_helper] version = "0.14.0" optional = true [features] crossterm = ["dep:crossterm"] default = [ "crossterm", "pixels", "stb-image", ] pixels = [ "dep:winit", "dep:winit_input_helper", "dep:pixels", ] stb-image = ["dep:stb_image"]