sweeper 0.3.0

A foundation for Minesweeper implementations in Rust
Documentation
[package]
name = "sweeper"
version = "0.3.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"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rand = {version = "0.7", optional = true, default-features = false, features = ["alloc"]}
serde = {version = "1.0", optional = true, default-features = false, features = ["derive", "alloc"]}

[features]
default = ["std", "generation", "serialization"]
std = ["rand/std", "serde/std"]
generation = ["rand"]
serialization = ["serde"]
track_caller = []