-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 876 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 876 Bytes
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
# Copyright 2024-2026 Andrey Vasilevsky <anvanster@gmail.com>
# SPDX-License-Identifier: Apache-2.0
[package]
name = "codegraph-php"
version = "0.2.1"
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "PHP parser for CodeGraph - extracts code entities and relationships from PHP source files"
keywords = ["php", "parser", "code-analysis"]
categories = ["parser-implementations", "development-tools"]
[dependencies]
# Workspace dependencies
codegraph.workspace = true
codegraph-parser-api.workspace = true
serde.workspace = true
thiserror.workspace = true
# PHP parser
tree-sitter = "0.22"
tree-sitter-php = "0.22"
rayon = "1.10"
[dev-dependencies]
serde_json.workspace = true
tempfile = "3.0"
criterion = "0.5"
[[bench]]
name = "parsing"
harness = false
[lib]
name = "codegraph_php"
path = "src/lib.rs"