Skip to content

Commit 4313cd0

Browse files
committed
new branch csp_0_3
1 parent f69f499 commit 4313cd0

22 files changed

+632
-2352
lines changed

.gitignore

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
1-
# Generated by Cargo
2-
# will have compiled files and executables
3-
debug/
4-
target/
1+
.vscode
52

6-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
8-
Cargo.lock
9-
10-
# These are backup files generated by rustfmt
3+
/target
114
**/*.rs.bk
12-
13-
# MSVC Windows builds of rustc generate these, which store debugging information
14-
*.pdb
15-
16-
.vscode/
5+
clippy.txt

Cargo.lock

Lines changed: 343 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
[package]
2-
name = "csp-solver"
3-
version = "0.2.0"
4-
edition = "2021"
2+
name = "csp"
3+
version = "0.3.1"
4+
edition = "2024"
5+
description = "CSP Solver"
6+
rust-version = "1.88"
7+
categories = ["algorithms", "data-structures", "mathematics", "science"]
8+
keywords = ["constraint-satisfaction-problem", "constraint-solver", "constraint-propagation"]
9+
license = "MIT"
10+
repository = "https://github.com/radevgit/csp"
11+
readme = "README.md"
512

613
[dependencies]
14+
15+
[lib]
16+
crate-type = ["lib"]
17+
18+
[dev-dependencies]
19+
rand = "0.9.2"
20+
divan = "0.1.21"

0 commit comments

Comments
 (0)