[package]
name = "sweeper"
version = "0.2.0"
authors = ["Kotauskas <v.toncharov@gmail.com>"]
edition = "2018"
license = "Zlib"
repository = "https://github.com/kotauskas/sweeper"
documentation = "https://docs.rs/sweeper"
readme = "README.md"
description = "A foundation for Minesweeper implementations in Rust"
[dependencies]
rand = {version = "0.7", optional = true, default-features = false, features = ["alloc"]}
[features]
default = ["std", "generation"]
std = ["rand/std"]
generation = ["rand"]
track_caller = []