blob: f79b19dcefe3a6a038d95723009a97db8766314d [file] [log] [blame] [edit]
"""End-to-end example of using simple functions."""
load("//common:crubit_wrapper_macros_oss.bzl", "crubit_rust_test")
load("//rs_bindings_from_cc/test:test_bindings.bzl", "crubit_test_cc_library")
package(default_applicable_licenses = ["//:license"])
crubit_test_cc_library(
name = "roundtrip",
hdrs = ["roundtrip.h"],
deps = [
"//support/rs_std:char",
],
)
crubit_rust_test(
name = "main",
srcs = ["test.rs"],
cc_deps = [":roundtrip"],
deps = [
"@crate_index//:googletest",
],
)