| load("//rust:defs.bzl", "rust_binary", "rust_clippy") | |
| rust_binary( | |
| name = "gen_rust_project", | |
| srcs = ["main.rs"], | |
| edition = "2018", | |
| visibility = ["//visibility:public"], | |
| deps = [ | |
| "//tools/rust_analyzer/raze:anyhow", | |
| "//tools/rust_analyzer/raze:structopt", | |
| "//util/label", | |
| ], | |
| ) | |
| rust_clippy( | |
| name = "gen_rust_project_clippy", | |
| testonly = True, | |
| visibility = ["//visibility:private"], | |
| deps = [ | |
| ":gen_rust_project", | |
| ], | |
| ) |