From 5f6430a4eef9e956a253a6ed1df4244d98540c57 Mon Sep 17 00:00:00 2001 From: Benjamin Slingo Date: Sat, 23 Aug 2025 14:33:35 -0400 Subject: [PATCH] Fix church-core dependency path in Cargo.toml - Change path from ../../church-core to ../church-core to match actual directory structure --- astro-church-website/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro-church-website/Cargo.toml b/astro-church-website/Cargo.toml index cdf6709..e0949b6 100644 --- a/astro-church-website/Cargo.toml +++ b/astro-church-website/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] napi = { version = "2", default-features = false, features = ["napi4"] } napi-derive = "2" -church-core = { path = "../../church-core", features = ["uniffi"] } +church-core = { path = "../church-core", features = ["uniffi"] } tokio = { version = "1", features = ["full"] } [build-dependencies]