Adam Snaider | 770b97b | 2023-08-04 21:07:48 -0700 | [diff] [blame] | 1 | load("@rules_rust//rust:defs.bzl", "rust_binary") |
2 | load("@cxxbridge_cmd_deps//:defs.bzl", "aliases", "all_crate_deps") | ||||
3 | |||||
4 | rust_binary( | ||||
5 | name = "cxxbridge-cmd", | ||||
6 | srcs = glob(["src/**/*.rs"]), | ||||
7 | aliases = aliases(), | ||||
8 | data = [ | ||||
9 | "src/gen/include/cxx.h", | ||||
10 | ], | ||||
11 | edition = "2021", | ||||
12 | visibility = ["//visibility:public"], | ||||
13 | deps = all_crate_deps( | ||||
14 | normal = True, | ||||
15 | ), | ||||
16 | ) |