• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("@rules_rust//rust:defs.bzl", "rust_binary")
2
3rust_binary(
4    name = "cxxbridge",
5    srcs = glob(["src/**/*.rs"]),
6    data = ["src/gen/include/cxx.h"],
7    deps = [
8        "@cxxbridge_cmd_deps//:clap",
9        "@cxxbridge_cmd_deps//:codespan-reporting",
10        "@cxxbridge_cmd_deps//:proc-macro2",
11        "@cxxbridge_cmd_deps//:quote",
12        "@cxxbridge_cmd_deps//:syn",
13    ],
14    visibility = ["//visibility:public"],
15)
16