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:
parent
b1796b0475
commit
5f6430a4ee
|
@ -9,7 +9,7 @@ crate-type = ["cdylib"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
napi = { version = "2", default-features = false, features = ["napi4"] }
|
napi = { version = "2", default-features = false, features = ["napi4"] }
|
||||||
napi-derive = "2"
|
napi-derive = "2"
|
||||||
church-core = { path = "../../church-core", features = ["uniffi"] }
|
church-core = { path = "../church-core", features = ["uniffi"] }
|
||||||
tokio = { version = "1", features = ["full"] }
|
tokio = { version = "1", features = ["full"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
|
|
Loading…
Reference in a new issue