-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (49 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
64 lines (49 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Copyright 2024-2026 Andrey Vasilevsky <anvanster@gmail.com>
# SPDX-License-Identifier: Apache-2.0
[package]
name = "codegraph-python"
version = "0.4.3"
edition.workspace = true
rust-version = "1.75"
authors.workspace = true
license.workspace = true
repository = "https://github.com/anvanster/codegraph-python"
description = "Python parser plugin for CodeGraph - extracts code entities and relationships from Python source files"
keywords = ["parser", "python", "code-analysis", "ast", "graph"]
categories = ["development-tools", "parsing"]
[dependencies]
# Core graph database
codegraph.workspace = true
# Parser API
codegraph-parser-api.workspace = true
# Python parser - tree-sitter based
tree-sitter = "0.22"
tree-sitter-python = "0.21"
# Error handling
thiserror.workspace = true
# Serialization
serde.workspace = true
serde_json.workspace = true
# File system utilities
walkdir = "2.0"
# Parallel processing
rayon = "1.10"
# Structured logging
tracing = "0.1"
[dev-dependencies]
# Benchmarking
criterion = "0.5"
# Temporary files for testing
tempfile = "3.0"
[[bench]]
name = "parsing"
harness = false
[lib]
name = "codegraph_python"
path = "src/lib.rs"
[[example]]
name = "basic_parse"
path = "examples/basic_parse.rs"
[[example]]
name = "parse_project"
path = "examples/parse_project.rs"