cspsolver 0.6.0

Constraint Satisfaction Problem (CSP) solver
Documentation
[dependencies]

[dev-dependencies]

[[example]]
name = "allequal_demo"
path = "examples/allequal_demo.rs"

[[example]]
name = "boolean_array_demo"
path = "examples/boolean_array_demo.rs"

[[example]]
name = "chained_comparisons_demo"
path = "examples/chained_comparisons_demo.rs"

[[example]]
name = "clean_api_demo"
path = "examples/clean_api_demo.rs"

[[example]]
name = "count_demo"
path = "examples/count_demo.rs"

[[example]]
name = "element_demo"
path = "examples/element_demo.rs"

[[example]]
name = "element_syntax_demo"
path = "examples/element_syntax_demo.rs"

[[example]]
name = "global_constraints_demo"
path = "examples/global_constraints_demo.rs"

[[example]]
name = "graph_coloring"
path = "examples/graph_coloring.rs"

[[example]]
name = "magic_square"
path = "examples/magic_square.rs"

[[example]]
name = "n_queens"
path = "examples/n_queens.rs"

[[example]]
name = "runtime_api_demo"
path = "examples/runtime_api_demo.rs"

[[example]]
name = "safe_constraint_building"
path = "examples/safe_constraint_building.rs"

[[example]]
name = "send_more_money"
path = "examples/send_more_money.rs"

[[example]]
name = "step_9_1_constraints_demo"
path = "examples/step_9_1_constraints_demo.rs"

[[example]]
name = "sudoku"
path = "examples/sudoku.rs"

[[example]]
name = "table_demo"
path = "examples/table_demo.rs"

[[example]]
name = "table_test"
path = "examples/table_test.rs"

[[example]]
name = "timeout_demo"
path = "examples/timeout_demo.rs"

[[example]]
name = "timeout_memory_demo"
path = "examples/timeout_memory_demo.rs"

[[example]]
name = "type_inference_demo"
path = "examples/type_inference_demo.rs"

[[example]]
name = "zebra_puzzle"
path = "examples/zebra_puzzle.rs"

[lib]
crate-type = ["lib"]
name = "cspsolver"
path = "src/lib.rs"

[lints.rustdoc]
missing_crate_level_docs = "warn"
private_doc_tests = "warn"
unescaped_backticks = "warn"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures", "mathematics", "science"]
description = "Constraint Satisfaction Problem (CSP) solver"
documentation = "https://docs.rs/cspsolver"
edition = "2024"
keywords = ["csp", "constraint-solver", "solver", "puzzle", "constraint"]
license = "MIT"
name = "cspsolver"
readme = "README.md"
repository = "https://github.com/radevgit/cspsolver"
rust-version = "1.88"
version = "0.6.0"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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