blob: 2154a66f0a69236eb28a2bdf45eeb80cd3692aee [file] [log] [blame]
"""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 = [
"@crate_index//:static_assertions",
],
)