xref: /aosp_15_r20/external/gsc-utils/rust/enum_utils/BUILD (revision 4f2df630800bdcf1d4f0decf95d8a1cb87344f5f)
1# Copyright 2023 The ChromiumOS Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4package(default_visibility = ["//platform:__subpackages__"])
5
6load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
7
8rust_proc_macro(
9    name = "enum_utils",
10    srcs = glob(["**/*.rs"]),
11    edition = "2021",
12)
13