mirror of
https://github.com/github/codeql.git
synced 2026-02-20 08:53:49 +01:00
We've been observing some performance issues using crate_universe on CI. Therefore, we're moving to vendor the auto-generated BUILD files in our repository. This should provide a nice speed boost, while getting rid of the complexity of the "rust cache" job we've been using when we had a lot of git dependencies. This PR includes a vendor script, and I'll put up a CI job internally that runs that vendor script on Cargo.toml and Cargo.lock changes, to check that the vendored files are in sync.
27 lines
638 B
TOML
27 lines
638 B
TOML
[package]
|
|
name = "codeql-extractor"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = ["GitHub"]
|
|
|
|
# When updating these dependencies, run `misc/bazel/3rdparty/update_cargo_deps.sh`
|
|
[dependencies]
|
|
flate2 = "1.0"
|
|
globset = "0.4"
|
|
tree-sitter = ">= 0.23.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
|
|
rayon = "1.5.0"
|
|
regex = "1.7.1"
|
|
encoding = "0.2"
|
|
lazy_static = "1.4.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
num_cpus = "1.14.0"
|
|
|
|
[dev-dependencies]
|
|
tree-sitter-ql = "0.23.1"
|
|
tree-sitter-json = "0.24.8"
|
|
rand = "0.8.5"
|