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