xref: /aosp_15_r20/external/bazelbuild-rules_rust/tools/rust_analyzer/deps.bzl (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1"""
2The dependencies for running the gen_rust_project binary.
3"""
4
5load("//tools/rust_analyzer/3rdparty/crates:defs.bzl", "crate_repositories")
6
7def rust_analyzer_dependencies():
8    """Define dependencies of the `rust_analyzer` Bazel tools"""
9    return crate_repositories()
10
11# For legacy support
12gen_rust_project_dependencies = rust_analyzer_dependencies
13rust_analyzer_deps = rust_analyzer_dependencies
14