eeaca9fc10
* cargo autoinherit * sort
33 lines
899 B
TOML
33 lines
899 B
TOML
[package]
|
|
name = "nym-go-ffi"
|
|
version = "0.2.1"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
name = "nym_go_ffi"
|
|
|
|
[dependencies]
|
|
# Bindgen
|
|
uniffi = { workspace = true, features = ["cli"] }
|
|
# Nym clients, addressing, packet format, common tools (logging), ffi shared
|
|
nym-sdk = { path = "../../rust/nym-sdk/" }
|
|
nym-bin-common = { path = "../../../common/bin-common" }
|
|
nym-sphinx-anonymous-replies = { path = "../../../common/nymsphinx/anonymous-replies" }
|
|
nym-ffi-shared = { path = "../shared" }
|
|
# Async runtime
|
|
tokio = { workspace = true, features = ["full"] }
|
|
lazy_static = { workspace = true }
|
|
# error handling
|
|
anyhow = { workspace = true }
|
|
thiserror.workspace = true
|
|
|
|
[build-dependencies]
|
|
uniffi = { workspace = true, features = ["build"] }
|
|
uniffi_build = { workspace = true, features = ["builtin-bindgen"] }
|
|
|
|
[[bin]]
|
|
name = "uniffi-bindgen"
|
|
path = "uniffi-bindgen.rs"
|