
- Change path from ../../church-core to ../church-core to match actual directory structure
16 lines
363 B
TOML
16 lines
363 B
TOML
[package]
|
|
name = "church-core-bindings"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
napi = { version = "2", default-features = false, features = ["napi4"] }
|
|
napi-derive = "2"
|
|
church-core = { path = "../church-core", features = ["uniffi"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2" |