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