zero-alloc-sudoku 1.0.0

Zero-allocation, sub-microsecond Sudoku solver with 9-bit bitboard constraint propagation and MRV backtracking.
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 = "2021"
name = "zero-alloc-sudoku"
version = "1.0.0"
authors = ["nzengi"]
build = false
exclude = ["target/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-allocation, sub-microsecond Sudoku solver with 9-bit bitboard constraint propagation and MRV backtracking."
homepage = "https://github.com/nzengi/zero-alloc-sudoku"
documentation = "https://docs.rs/zero-alloc-sudoku"
readme = "README.md"
keywords = [
    "sudoku",
    "solver",
    "bitboard",
    "puzzle",
    "zero-alloc",
]
categories = [
    "algorithms",
    "game-engines",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nzengi/zero-alloc-sudoku"

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

[[bin]]
name = "sudoku-solver"
path = "src/main.rs"

[dependencies]

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

[profile.release.package."*"]
opt-level = 3