[dependencies]
[dev-dependencies.trybuild]
version = "1.0"
[lib]
name = "gotgraph"
path = "src/lib.rs"
[package]
authors = ["yasuo-ozu <yasuo@ozu.email>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "algorithms"]
description = "A type-safe, scope-aware graph library that leverages Rust's type system to prevent common graph-related bugs at compile time"
documentation = "https://docs.rs/gotgraph"
edition = "2021"
keywords = ["graph", "algorithm", "data-structure", "type-safe", "scope"]
license = "MIT"
name = "gotgraph"
readme = "README.md"
repository = "https://github.com/yasuo-ozu/gotgraph"
rust-version = "1.75"
version = "0.2.0"
[[test]]
name = "comprehensive_api_tests"
path = "tests/comprehensive_api_tests.rs"
[[test]]
name = "nested_scoped_mut_bug_demo"
path = "tests/nested_scoped_mut_bug_demo.rs"
[[test]]
name = "tarjan_comprehensive_test"
path = "tests/tarjan_comprehensive_test.rs"
[[test]]
name = "tarjan_tests"
path = "tests/tarjan_tests.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[[test]]
name = "vec_graph"
path = "tests/vec_graph.rs"
[[test]]
name = "vec_graph_basic"
path = "tests/vec_graph_basic.rs"