sparta-proc-macros 0.1.0

Rust proc macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
load("@fbcode_macros//build_defs:rust_library.bzl", "rust_library")

rust_library(
    name = "sparta-proc-macros",
    srcs = glob(["src/**/*.rs"]),
    edition = "2018",
    proc_macro = True,
    test_deps = [],
    visibility = ["PUBLIC"],
    deps = [
        "//third-party/rust:quote",
        "//third-party/rust:syn",
    ],
)