Fix church-core dependency path in Cargo.toml

- Change path from ../../church-core to ../church-core to match actual directory structure
This commit is contained in:
Benjamin Slingo 2025-08-23 14:33:35 -04:00
parent b1796b0475
commit 5f6430a4ee

View file

@ -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]