blob: 3c50782679c33ef54125626dc84b12bb39746529 [file]
# Copyright 2026 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("//build/bazel/rules/rust:defs.bzl", "rustc_proc_macro")
package(default_visibility = ["//visibility:public"])
rustc_proc_macro(
name = "include_str_from_working_dir",
srcs = ["src/lib.rs"],
crate_name = "include_str_from_working_dir",
edition = "2024",
version = "0.1.0",
deps = [
"//third_party/rust_crates/vendor:proc-macro2",
"//third_party/rust_crates/vendor:quote",
"//third_party/rust_crates/vendor:syn",
],
)