#!/usr/bin/env bash
set -euo pipefail

SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"

bindgen "$SCRIPT_DIR/../../instrument-hooks/includes/core.h" \
  -o "$SCRIPT_DIR/bindings.rs" \
  --rust-target 1.74 \
  --allowlist-function "instrument_hooks_.*" \
  --allowlist-var "MARKER_TYPE_.*"
