| # Copyright 2025 The Fuchsia Authors. All rights reserved. | 
 | # Use of this source code is governed by a BSD-style license that can be | 
 | # found in the LICENSE file. | 
 |  | 
 | load("@rules_rust//rust:defs.bzl", "rust_proc_macro") | 
 |  | 
 | package(default_visibility = ["//visibility:public"]) | 
 |  | 
 | rust_proc_macro( | 
 |     name = "fuchsia-async-macro", | 
 |     srcs = ["src/lib.rs"], | 
 |     edition = "2021", | 
 |     version = "0.1.0", | 
 |     deps = [ | 
 |         "//third_party/rust_crates/vendor:proc-macro2", | 
 |         "//third_party/rust_crates/vendor:quote", | 
 |         "//third_party/rust_crates/vendor:syn", | 
 |     ], | 
 | ) |