[package]
edition = "2021"
rust-version = "1.75"
name = "codegraph-python"
version = "0.4.0"
authors = ["anvanster"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Python parser plugin for CodeGraph - extracts code entities and relationships from Python source files"
readme = "README.md"
keywords = [
"parser",
"python",
"code-analysis",
"ast",
"graph",
]
categories = [
"development-tools",
"parsing",
]
license = "Apache-2.0"
repository = "https://github.com/anvanster/codegraph-python"
[lib]
name = "codegraph_python"
path = "src/lib.rs"
[[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"
[[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"
[[bench]]
name = "parsing"
path = "benches/parsing.rs"
harness = false
[dependencies.codegraph]
version = "0.1.1"
[dependencies.codegraph-parser-api]
version = "0.2.0"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.tree-sitter]
version = "0.20"
[dependencies.tree-sitter-python]
version = "0.20"
[dependencies.walkdir]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3.0"