[package]
edition = "2021"
name = "rayon-ca"
version = "0.2.1"
build = false
exclude = [
".cargo/",
".github/",
".vscode/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance cellular automaton's implementation in Rust LIB with CLI app and WebP animation export."
documentation = "https://docs.rs/rayon-ca"
readme = "README.md"
keywords = [
"cellular-automata",
"rayon",
"simulation",
"cli",
"parallel",
]
categories = [
"games",
"game-development",
"simulation",
"concurrency",
"command-line-utilities",
]
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/AlexMorgan3817/CellularAutomatonsRust"
[features]
cli = [
"clearscreen",
"clap",
"image",
"webp-animation",
"colored",
]
default = []
[lib]
name = "rayon_ca"
path = "src/lib.rs"
[[bin]]
name = "main"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.53"
features = ["derive"]
optional = true
[dependencies.clearscreen]
version = "4.0.2"
optional = true
[dependencies.colored]
version = "3.0.0"
optional = true
[dependencies.image]
version = "0.25.9"
optional = true
[dependencies.rand]
version = "0.9"
[dependencies.rayon]
version = "1.11"
[dependencies.webp-animation]
version = "0.9.0"
optional = true