Files
codeql/php/extractor/Cargo.toml
Josef Svenningsson cea862bfb3 PHP extractor and query library, built with AI
This is built with copilot, via a number
of iterations and run various test. But it should
by no means be considered production ready. I'm
looking for feeback on how to take this forward.
2026-03-05 17:02:05 +00:00

22 lines
587 B
TOML

[package]
name = "codeql-extractor-php"
description = "CodeQL PHP extractor"
version = "0.1.0"
authors = ["GitHub"]
edition = "2024"
# When updating these dependencies, run `misc/bazel/3rdparty/update_cargo_deps.sh`
[dependencies]
tree-sitter = ">= 0.23.0"
tree-sitter-php = "0.23.11"
clap = { version = "4.5", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
rayon = "1.11.0"
regex = "1.11.3"
encoding = "0.2"
lazy_static = "1.5.0"
serde_json = "1.0.145"
codeql-extractor = { path = "../../shared/tree-sitter-extractor" }