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