nandi/jolt-nativepublic Fork 0
c4f56b0a96ecb29336e2cf16c522b794ae62ad3f
Commits
Clone
git clone https://git.rickub.com/nandi/jolt-native.git
git clone ssh://git@rickub.com/nandi/jolt-native.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

BUCK · 10 lines · 313 BPython Blame HistoryRaw
Build under buck2, with the toolchain pinned rather than found 460541b nandi 19d ago1# The rules every native library in this workspace keeps at its FFI edge.
2# Nothing loads it; the two cdylibs link it.
3rust_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)