Files
nym/sdk/ffi/go/Cargo.toml
mfahampshire 9b6b2117dd Max/general abstraction updates (#5560)
- new instance of echo server with lib / cli split 
- echo server docs update 
- tcpproxy and echosever now listen for kill signal 
- ffi bindings of tcpproxy functions updated
2025-05-14 15:51:18 +00:00

34 lines
978 B
TOML

[package]
name = "nym-go-ffi"
version = "0.2.2"
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-crypto = { path = "../../../common/crypto" }
nym-bin-common = { path = "../../../common/bin-common", features = ["basic_tracing"] }
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"