-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (57 loc) · 1.41 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (57 loc) · 1.41 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
65
66
67
68
69
70
71
[package]
name = "codegraph-python"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["anvanster"]
license = "Apache-2.0"
description = "Python parser plugin for CodeGraph - extracts code entities and relationships from Python source files"
repository = "https://github.com/anvanster/codegraph-python"
keywords = ["parser", "python", "code-analysis", "ast", "graph"]
categories = ["development-tools", "parsing"]
[dependencies]
# Core graph database
codegraph = "0.1.1"
# Python AST parsing
rustpython-parser = "0.4"
rustpython-ast = "0.4"
# Error handling
thiserror = "1.0"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# 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"
# Additional examples will be added as features are implemented
# [[example]]
# name = "call_graph"
# path = "examples/call_graph.rs"
#
# [[example]]
# name = "dependency_analysis"
# path = "examples/dependency_analysis.rs"
#
# [[example]]
# name = "project_stats"
# path = "examples/project_stats.rs"