mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +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.
41 lines
913 B
Python
41 lines
913 B
Python
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
|
load("@rules_rust//rust:defs.bzl", "rust_library")
|
|
load("//misc/bazel/3rdparty/py_deps:defs.bzl", "aliases", "all_crate_deps")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
# This will run the build script from the root of the workspace, and
|
|
# collect the outputs.
|
|
cargo_build_script(
|
|
name = "tsp-build",
|
|
srcs = ["bindings/rust/build.rs"],
|
|
data = glob([
|
|
"src/**",
|
|
]),
|
|
deps = all_crate_deps(
|
|
build = True,
|
|
),
|
|
)
|
|
|
|
rust_library(
|
|
name = "tsp",
|
|
srcs = [
|
|
"bindings/rust/lib.rs",
|
|
],
|
|
aliases = aliases(),
|
|
compile_data = glob([
|
|
"src/**",
|
|
"queries/**",
|
|
]) + [
|
|
"grammar.js",
|
|
],
|
|
proc_macro_deps = all_crate_deps(
|
|
proc_macro = True,
|
|
),
|
|
deps = [":tsp-build"] + all_crate_deps(
|
|
normal = True,
|
|
),
|
|
)
|
|
|
|
exports_files(["Cargo.toml"])
|