Skip to content

Commit da24e09

Browse files
authored
Merge pull request #2 from link-foundation/issue-1-e91383a5ba4b
Implement network isomorphism solver using Links Theory
2 parents fea2f7a + e7c6bb5 commit da24e09

File tree

12 files changed

+2519
-393
lines changed

12 files changed

+2519
-393
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
[package]
2-
name = "my-package"
3-
version = "0.1.0"
2+
name = "network-isomorphism-solver"
3+
version = "0.2.0"
44
edition = "2021"
5-
description = "A Rust package template for AI-driven development"
5+
description = "Network isomorphism solver using Links Theory - determines if two networks are structurally identical"
66
readme = "README.md"
77
license = "Unlicense"
8-
keywords = ["template", "rust", "ai-driven"]
9-
categories = ["development-tools"]
10-
repository = "https://github.com/link-foundation/rust-ai-driven-development-pipeline-template"
11-
documentation = "https://github.com/link-foundation/rust-ai-driven-development-pipeline-template"
8+
keywords = ["isomorphism", "links-theory", "graph", "network", "algorithm"]
9+
categories = ["algorithms", "science", "data-structures"]
10+
repository = "https://github.com/link-foundation/network-isomorphism-solver"
11+
documentation = "https://github.com/link-foundation/network-isomorphism-solver"
1212
rust-version = "1.70"
1313

1414
[lib]
15-
name = "my_package"
15+
name = "network_isomorphism_solver"
1616
path = "src/lib.rs"
1717

1818
[[bin]]
19-
name = "my-package"
19+
name = "network-isomorphism-solver"
2020
path = "src/main.rs"
2121

2222
[dependencies]
2323
tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "time"] }
24+
links-notation = "0.13.0"
2425

2526
[dev-dependencies]
2627
tokio-test = "0.4"
@@ -38,6 +39,8 @@ module_name_repetitions = "allow"
3839
too_many_lines = "allow"
3940
missing_errors_doc = "allow"
4041
missing_panics_doc = "allow"
42+
too_many_arguments = "allow"
43+
missing_const_for_fn = "allow"
4144

4245
[profile.release]
4346
lto = true

0 commit comments

Comments
 (0)