Fix target mismatch

This commit is contained in:
Jazz Turner-Baggs 2026-02-23 20:25:11 -08:00
parent 8c197bcc62
commit 0f406be6c3
No known key found for this signature in database

7
.cargo/config.toml Normal file
View File

@ -0,0 +1,7 @@
[env]
# Pin the macOS deployment target so vendored C/C++ builds (SQLCipher, OpenSSL)
# compile with the same minimum version as the Nim linker expects.
# Without this, the host SDK version is used (currently 15.5), causing
# "was built for newer macOS version" linker warnings.
# This is caused by nimble and cargo defaulting to different targets.
MACOSX_DEPLOYMENT_TARGET = { value = "15.0", force = false }