blob: 0221c29ec99b2db1dbb61a2e81951bc2ef01ba79 [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
package(default_visibility = ["//visibility:public"])
rust_proc_macro(
name = "opentitantool_derive",
srcs = ["src/lib.rs"],
deps = [
"//third_party/rust/crates:proc_macro2",
"//third_party/rust/crates:proc_macro_error",
"//third_party/rust/crates:quote",
"//third_party/rust/crates:syn",
],
)