blob: 835b31147b74e93e500430d5cf65723779e92bf8 [file]
"""End-to-end test for operators."""
load("@rules_rust//rust:defs.bzl", "rust_test")
licenses(["notice"])
cc_library(
name = "operators",
srcs = ["operators.cc"],
hdrs = ["operators.h"],
)
rust_test(
name = "main",
srcs = ["test.rs"],
cc_deps = [":operators"],
deps = [
"@crates_io//static_assertions/v1:static_assertions",
],
)