mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
25 lines
860 B
Python
25 lines
860 B
Python
load("@rules_rust//crate_universe:defs.bzl", "crates_vendor")
|
|
|
|
# The targets in this file re-do the vendoring of the rust cargo dependencies. Use the update_cargo_deps.sh script to run the targets, and do all the necessary work around vendoring.
|
|
crates_vendor(
|
|
name = "vendor_tree_sitter_extractors",
|
|
cargo_lockfile = "//:Cargo.lock",
|
|
generate_build_scripts = True,
|
|
manifests = ["//:Cargo.toml"],
|
|
mode = "remote",
|
|
repository_name = "vendor_ts",
|
|
tags = ["manual"],
|
|
vendor_path = "tree_sitter_extractors_deps",
|
|
)
|
|
|
|
crates_vendor(
|
|
name = "vendor_py_deps",
|
|
cargo_lockfile = "//python/extractor/tsg-python:Cargo.lock",
|
|
generate_build_scripts = True,
|
|
manifests = ["//python/extractor/tsg-python:Cargo.toml"],
|
|
mode = "remote",
|
|
repository_name = "vendor_py",
|
|
tags = ["manual"],
|
|
vendor_path = "py_deps",
|
|
)
|