11[package ]
2- name = " my-package "
3- version = " 0.1 .0"
2+ name = " network-isomorphism-solver "
3+ version = " 0.2 .0"
44edition = " 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 "
66readme = " README.md"
77license = " 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 "
1212rust-version = " 1.70"
1313
1414[lib ]
15- name = " my_package "
15+ name = " network_isomorphism_solver "
1616path = " src/lib.rs"
1717
1818[[bin ]]
19- name = " my-package "
19+ name = " network-isomorphism-solver "
2020path = " src/main.rs"
2121
2222[dependencies ]
2323tokio = { version = " 1.0" , features = [" rt-multi-thread" , " macros" , " time" ] }
24+ links-notation = " 0.13.0"
2425
2526[dev-dependencies ]
2627tokio-test = " 0.4"
@@ -38,6 +39,8 @@ module_name_repetitions = "allow"
3839too_many_lines = " allow"
3940missing_errors_doc = " allow"
4041missing_panics_doc = " allow"
42+ too_many_arguments = " allow"
43+ missing_const_for_fn = " allow"
4144
4245[profile .release ]
4346lto = true
0 commit comments