mirror of
https://github.com/github/codeql.git
synced 2026-02-17 23:43:42 +01:00
24 lines
1.0 KiB
TOML
24 lines
1.0 KiB
TOML
[package]
|
|
name = "codeql-extractor-ql"
|
|
version = "0.1.0"
|
|
authors = ["GitHub"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tree-sitter = ">= 0.22.6"
|
|
tree-sitter-ql = { git = "https://github.com/tree-sitter/tree-sitter-ql.git", rev = "fa5c3821dd2161f5c8528a8cbdb258daa6dc4de6"}
|
|
tree-sitter-ql-dbscheme = { git = "https://github.com/tree-sitter/tree-sitter-ql-dbscheme.git", rev = "5f770f57fa415607ff50e3d237d47c8f11440eb3"}
|
|
tree-sitter-blame = {path = "../buramu/tree-sitter-blame"}
|
|
tree-sitter-json = {git = "https://github.com/tree-sitter/tree-sitter-json.git", rev = "94f5c527b2965465956c2000ed6134dd24daf2a7"}
|
|
clap = { version = "4.2", features = ["derive"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
rayon = "1.9.0"
|
|
regex = "1.10.4"
|
|
codeql-extractor = { path = "../../shared/tree-sitter-extractor" }
|
|
|
|
[patch.crates-io]
|
|
tree-sitter = {git = "https://github.com/redsun82/tree-sitter.git", rev = "1f5c1112ceaa8fc6aff61d1852690407670d2a96"}
|