68a192daa3
* Upgrade to thiserror 2.0
* Remove line macros in vesting contract error type
* Name positional arguments in GatewayRequestsError
* Named positional argument
* Revert "Remove line macros in vesting contract error type"
This reverts commit 49f937da3f.
* Use positional arguments for line
33 lines
877 B
TOML
33 lines
877 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 = { version = "0.25.2", 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 = { version = "1", features = ["full"] }
|
|
lazy_static = "1.5.0"
|
|
# error handling
|
|
anyhow = "1.0.95"
|
|
thiserror.workspace = true
|
|
|
|
[build-dependencies]
|
|
uniffi = { version = "0.25.2", features = ["build"] }
|
|
uniffi_build = { version = "0.25.2", features = ["builtin-bindgen"] }
|
|
|
|
[[bin]]
|
|
name = "uniffi-bindgen"
|
|
path = "uniffi-bindgen.rs"
|