[package]
edition = "2024"
name = "minsweeper-rs"
version = "1.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of minsweeper"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/Canary-Prism/minsweeper-rs"
[features]
async = ["tokio/sync"]
linked-hash-set = ["hashlink"]
[lib]
name = "minsweeper_rs"
path = "src/lib.rs"
[dependencies.fastrand]
version = "2.3.0"
[dependencies.hashlink]
version = "0.11.0"
optional = true
[dependencies.tokio]
version = "1.49.0"
features = ["sync"]
optional = true