[[bench]]
harness = false
name = "parsing"
path = "benches/parsing.rs"
[dependencies.codegraph]
version = "0.1.1"
[dependencies.codegraph-parser-api]
version = "0.1.0"
[dependencies.rayon]
version = "1.10"
[dependencies.rustpython-ast]
version = "0.4"
[dependencies.rustpython-parser]
version = "0.4"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.walkdir]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3.0"
[[example]]
name = "basic_parse"
path = "examples/basic_parse.rs"
[[example]]
name = "debug_calls"
path = "examples/debug_calls.rs"
[[example]]
name = "parse_project"
path = "examples/parse_project.rs"
[lib]
name = "codegraph_python"
path = "src/lib.rs"
[package]
authors = ["anvanster"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "parsing"]
description = "Python parser plugin for CodeGraph - extracts code entities and relationships from Python source files"
edition = "2021"
keywords = ["parser", "python", "code-analysis", "ast", "graph"]
license = "Apache-2.0"
name = "codegraph-python"
readme = "README.md"
repository = "https://github.com/anvanster/codegraph-python"
rust-version = "1.75"
version = "0.2.1"
[[test]]
name = "integration_coverage_tests"
path = "tests/integration_coverage_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "parser_impl_tests"
path = "tests/parser_impl_tests.rs"
[[test]]
name = "parser_trait_tests"
path = "tests/parser_trait_tests.rs"
[[test]]
name = "project_parsing_tests"
path = "tests/project_parsing_tests.rs"
[[test]]
name = "test_ast_api"
path = "tests/test_ast_api.rs"