mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
28 lines
657 B
TOML
28 lines
657 B
TOML
[package]
|
|
name = "codeql-extractor"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
authors = ["GitHub"]
|
|
|
|
# When updating these dependencies, run `misc/bazel/3rdparty/update_cargo_deps.sh`
|
|
[dependencies]
|
|
flate2 = "1.1"
|
|
globset = "0.4"
|
|
tree-sitter = ">= 0.23.0"
|
|
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 = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4.42", features = ["serde"] }
|
|
num_cpus = "1.17.0"
|
|
zstd = "0.13.3"
|
|
|
|
[dev-dependencies]
|
|
tree-sitter-ql = "0.23.1"
|
|
tree-sitter-json = "0.24.8"
|
|
rand = "0.9.2"
|