mirror of
https://github.com/github/codeql.git
synced 2026-04-11 01:54:00 +02:00
Use the Rayon library to do parallel iteration over the file list. The number of threads used respects the CODEQL_THREADS environment variable.
19 lines
547 B
TOML
19 lines
547 B
TOML
[package]
|
|
name = "ruby-extractor"
|
|
version = "0.1.0"
|
|
authors = ["GitHub"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
flate2 = "1.0"
|
|
node-types = { path = "../node-types" }
|
|
tree-sitter = "0.17"
|
|
tree-sitter-ruby = { git = "https://github.com/tree-sitter/tree-sitter-ruby.git", rev = "49c5f6e9cc9ea1a3b9fb5414ba0c2d697acb2448" }
|
|
clap = "2.33"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.2", features = ["env-filter"] }
|
|
rayon = "1.5.0"
|
|
num_cpus = "1.13.0"
|