1
2
3
4
5
6
7
8
9
10
|
# The rules every native library in this workspace keeps at its FFI edge.
# Nothing loads it; the two cdylibs link it.
rust_library(
name = "jolt-abi",
srcs = glob(["src/**/*.rs"]),
crate_root = "src/lib.rs",
edition = "2021",
visibility = ["PUBLIC"],
deps = ["//third-party/rust:log"],
)
|