demine 0.1.0

A minesweeper solver.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "demine"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minesweeper solver."
readme = "README.md"
keywords = [
    "minesweeper",
    "solver",
    "engine",
    "probabilities",
    "game",
]
categories = [
    "game-development",
    "simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/canislupaster/demine"

[features]
use-mimalloc = ["dep:mimalloc"]

[lib]
name = "demine"
path = "src/lib.rs"

[[test]]
name = "probability_stress"
path = "tests/probability_stress.rs"

[[test]]
name = "solver_stress"
path = "tests/solver_stress.rs"

[dependencies.mimalloc]
version = "0.1.48"
features = ["v3"]
optional = true

[dependencies.rand]
version = "0.10.0"

[lints.rust]
unsafe_code = "forbid"

[profile.profiling]
debug = 2
inherits = "release"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1

[profile.testing]
debug-assertions = true
inherits = "release"