blob: 8e36e20e554bc4cc22f6619fabb330d11ba18ea8 [file] [log] [blame]
load("@rules_cc//cc:defs.bzl", "cc_library")
load("@rules_rust//bindgen:bindgen.bzl", "rust_bindgen_library")
load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_test")
cc_library(
name = "simple",
srcs = ["simple.h"],
)
rust_bindgen_library(
name = "simple_bindgen",
bindgen_flags = [
"--allowlist-var=SIMPLE_.*",
],
cc_lib = ":simple",
header = "simple.h",
)
rust_binary(
name = "simple_example",
srcs = ["main.rs"],
deps = [":simple_bindgen"],
)
rust_test(
name = "simple_test",
crate = ":simple_example",
)