buck-resources 1.0.0

Load resource paths from a resources.json produced by Buck
Documentation
load("@fbcode_macros//build_defs:rust_binary.bzl", "rust_binary")
load("@fbcode_macros//build_defs:rust_library.bzl", "rust_library")

oncall("rust_libraries")

rust_library(
    name = "buck_resources",
    srcs = [
        "src/lib.rs",
        "src/manifest.rs",
    ],
    deps = [
        "fbsource//third-party/rust:dunce",
        "fbsource//third-party/rust:once_cell",
        "fbsource//third-party/rust:serde",
        "fbsource//third-party/rust:serde_json",
        "fbsource//third-party/rust:thiserror",
    ],
)

rust_binary(
    name = "hello",
    srcs = ["tests/src/hello.rs"],
    unittests = False,
)

rust_binary(
    name = "buck_resources_test",
    srcs = ["tests/src/main.rs"],
    resources = {
        "hello_binary": ":hello",
    },
    deps = [
        ":buck_resources",
    ],
)