game-of-life/Cargo.toml

21 lines
661 B
TOML

[package]
authors = ["Mossfet"]
description = "A small, optionally zero-dependency Conway's Game of Life library"
edition = "2021"
license = "GPL-3.0-or-later"
name = "mossfets-game-of-life"
readme = "README.md"
repository = "https://git.solarpunk.moe/game-of-life"
version = "0.8.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rustc-hash = { version = "1.1.0", optional = true }
rayon = { version = "1.6.0", optional = true }
[profile.test]
debug = true
[features]
default = ["advanced_threading", "advanced_hashing"]
advanced_threading = ["dep:rayon"]
advanced_hashing = ["dep:rustc-hash"]