# 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 = "cellumina" version = "0.2.0" authors = ["Linus Mußmächer linus.mussmaecher@gmail.com"] description = "A library to configure and run cellular automata." homepage = "https://github.com/Linus-Mussmaecher/cellumina" readme = "README.md" keywords = [ "cellular", "automaton", "WebGL", ] license = "MIT" repository = "https://github.com/Linus-Mussmaecher/cellumina" [[example]] name = "game_of_life" required-features = ["display"] [[example]] name = "sand" required-features = ["display"] [[example]] name = "to_string" required-features = ["display"] [[example]] name = "rule90" required-features = [ "display", "simple_logger", ] [dependencies.bytemuck] version = "1.13.1" features = ["derive"] optional = true [dependencies.grid] version = "0.10" [dependencies.image] version = "0.24" [dependencies.log] version = "0.4" [dependencies.native-dialog] version = "0.6" optional = true [dependencies.pollster] version = "0.3" optional = true [dependencies.rand] version = "0.8" [dependencies.rayon] version = "1.7" [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.simple_logger] version = "4.2" optional = true [dependencies.wgpu] version = "0.17" optional = true [dependencies.winit] version = "0.28" optional = true [dev-dependencies.env_logger] version = "0.10" [dev-dependencies.toml] version = "0.7" [features] display = [ "dep:winit", "dep:wgpu", "dep:pollster", "dep:bytemuck", "dep:native-dialog", ]