nandi/jolt-nativepublic Fork 0
3cfee15a9d938584f526f606f853771eaad7f56c
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.

Build under buck2, with the toolchain pinned rather than found 460541b · on 3cfee15a9d938584f526f606f853771eaad7f56c · nandi · 19d ago
BUCK · 10 lines · 313 BPython Blame HistoryRaw
 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"],
)