[env] PROTOC = { force = true, value = "{{{protoc}}}" } FFMPEG_DIR = { force = true, value = "{{{nativeDeps}}}" } OPENSSL_STATIC = { force = true, value = "1" } OPENSSL_NO_VENDOR = { force = true, value = "0" } OPENSSL_RUST_USE_NASM = { force = true, value = "1" } {{#isMacOS}} [target.x86_64-apple-darwin] rustflags = ["-L", "{{{nativeDeps}}}/lib"] [target.x86_64-apple-darwin.heif] rustc-link-search = ["{{{nativeDeps}}}/lib"] rustc-link-lib = ["heif"] [target.aarch64-apple-darwin] rustflags = ["-L", "{{{nativeDeps}}}/lib"] [target.aarch64-apple-darwin.heif] rustc-link-search = ["{{{nativeDeps}}}/lib"] rustc-link-lib = ["heif"] {{/isMacOS}} {{#isWin}} [target.x86_64-pc-windows-msvc] rustflags = ["-L", "{{{nativeDeps}}}\\lib"] [target.x86_64-pc-windows-msvc.heif] rustc-link-search = ["{{{nativeDeps}}}\\lib"] rustc-link-lib = ["heif"] {{/isWin}} {{#isLinux}} [target.x86_64-unknown-linux-gnu] rustflags = ["-L", "{{{nativeDeps}}}/lib", "-C", "link-arg=-Wl,-rpath=${ORIGIN}/../lib/spacedrive"] [target.x86_64-unknown-linux-gnu.heif] rustc-link-search = ["{{{nativeDeps}}}/lib"] rustc-link-lib = ["heif"] [target.aarch64-unknown-linux-gnu] rustflags = ["-L", "{{{nativeDeps}}}/lib", "-C", "link-arg=-Wl,-rpath=${ORIGIN}/../lib/spacedrive"] [target.aarch64-unknown-linux-gnu.heif] rustc-link-search = ["{{{nativeDeps}}}/lib"] rustc-link-lib = ["heif"] {{/isLinux}} [alias] prisma = "run -p prisma-cli --bin prisma --" prisma-sync = "run -p prisma-cli --bin sync --"