60fa5cfeb8
* add TcpProxyClient and TcpProxyServer abstractions to SDK * add single connection example * add multi-connection example * add simple echo server to `tools/`: used for multi-connection example * update FFI toml files: switched to local imports * add proxy bindings to `ffi/shared` * add proxy bindings and example to `ffi/go` * add note to `ffi/cpp` about lack of Proxy bindings for the moment
26 lines
747 B
TOML
26 lines
747 B
TOML
[package]
|
|
name = "nym-ffi-shared"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
# Async runtime
|
|
tokio = { version = "1", features = ["full"] }
|
|
# Nym clients, addressing, packet format, common tools (logging)
|
|
nym-sdk = { path = "../../rust/nym-sdk/" }
|
|
nym-bin-common = { path = "../../../common/bin-common" }
|
|
nym-sphinx-anonymous-replies = { path = "../../../common/nymsphinx/anonymous-replies" }
|
|
# static var macro
|
|
lazy_static = "1.4.0"
|
|
# error handling
|
|
anyhow = "1.0.75"
|
|
# base58 en/decoding
|
|
bs58 = "0.5.0"
|
|
# UDL test
|
|
uniffi = { version = "0.25.2", features = ["cli"] }
|
|
|
|
[build-dependencies]
|
|
uniffi = { version = "0.25.2", features = ["build"] }
|
|
uniffi_build = { version = "0.25.2", features = ["builtin-bindgen"] }
|