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_test") 7 8rust_test( 9 name = "test", 10 edition = "2021", 11 srcs = ["src/lib.rs"], 12 proc_macro_deps = [ 13 "//platform/gsc-utils/rust/enum_utils", 14 ], 15) 16