mirror of
https://github.com/github/codeql.git
synced 2025-12-16 00:33:11 +01:00
23 lines
630 B
TOML
23 lines
630 B
TOML
[package]
|
|
name = "codeql-extractor-ruby"
|
|
description = "CodeQL Ruby 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-embedded-template = "0.25.0"
|
|
tree-sitter-ruby = "0.23.1"
|
|
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" }
|