From de7ef423dd681d8c29083dc2bea7bb8913b440ef Mon Sep 17 00:00:00 2001 From: MoCipher Date: Tue, 12 May 2026 11:06:52 +0200 Subject: [PATCH] Add core build script --- core/build.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 core/build.rs diff --git a/core/build.rs b/core/build.rs new file mode 100644 index 0000000..c68c609 --- /dev/null +++ b/core/build.rs @@ -0,0 +1,5 @@ +// build.rs for UniFFI codegen (optional, no-op if uniffi-bindgen not present) +fn main() { + println!("cargo:rerun-if-changed=uniffi/cryptec.udl"); + // Optionally, invoke uniffi-bindgen here for local dev builds +}