blob: 19cfefd4dfb8a2172d5a2ff0d079564c726a0fa0 [file] [log] [blame]
load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
rust_library(
name = "autocxx",
srcs = glob(["**/*.rs"]),
compile_data = ["README.md"],
crate_root = "src/lib.rs",
edition = "2021",
proc_macro_deps = [
"@crate_index//:aquamarine",
"//third_party/autocxx/macro:autocxx_macro",
],
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=autocxx",
"manual",
],
version = "0.16.0",
deps = [
"@crate_index//:cxx",
"@crate_index//:moveit",
],
)