[[bench]]
harness = false
name = "build_graph"
path = "benches/build_graph.rs"
[[bench]]
harness = false
name = "queries"
path = "benches/queries.rs"
[[bin]]
name = "rust-relations-explorer"
path = "src/main.rs"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.ignore]
version = "0.4"
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
features = ["derive", "rc"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dependencies.walkdir]
version = "2.4"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"
[[example]]
name = "basic_build"
path = "examples/basic_build.rs"
[[example]]
name = "generate_svg"
path = "examples/generate_svg.rs"
[[example]]
name = "generate_synthetic"
path = "examples/generate_synthetic.rs"
[[example]]
name = "query_connected"
path = "examples/query_connected.rs"
[lib]
name = "rust_relations_explorer"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "Explore relationships in Rust codebases: build a knowledge graph and run queries (connected files, function usage, cycles, paths, hubs, module centrality, trait impls)."
documentation = "https://docs.rs/rust-relations-explorer"
edition = "2021"
homepage = "https://github.com/automataIA/rust-relations-explorer"
keywords = ["rust", "graph", "relations", "analysis", "cli"]
license = "MIT OR Apache-2.0"
name = "rust-relations-explorer"
readme = "README.md"
repository = "https://github.com/automataIA/rust-relations-explorer"
version = "0.1.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[test]]
name = "app_run_cli"
path = "tests/app_run_cli.rs"
[[test]]
name = "cache_modes"
path = "tests/cache_modes.rs"
[[test]]
name = "cli_cache_modes"
path = "tests/cli_cache_modes.rs"
[[test]]
name = "cli_more_coverage"
path = "tests/cli_more_coverage.rs"
[[test]]
name = "cli_outputs"
path = "tests/cli_outputs.rs"
[[test]]
name = "cli_smoke"
path = "tests/cli_smoke.rs"
[[test]]
name = "cli_svg_and_queries"
path = "tests/cli_svg_and_queries.rs"
[[test]]
name = "config_loading"
path = "tests/config_loading.rs"
[[test]]
name = "ignore_patterns"
path = "tests/ignore_patterns.rs"
[[test]]
name = "integration_queries"
path = "tests/integration_queries.rs"
[[test]]
name = "parser_props"
path = "tests/parser_props.rs"
[[test]]
name = "query_additional"
path = "tests/query_additional.rs"
[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"
[[test]]
name = "visualization_dot"
path = "tests/visualization_dot.rs"