9b6b2117dd
- 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
27 lines
831 B
TOML
27 lines
831 B
TOML
[package]
|
|
name = "nym-ffi-shared"
|
|
version = "0.2.1"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
# Async runtime
|
|
tokio = { workspace = true, features = ["full"] }
|
|
# Nym clients, addressing, packet format, common tools (logging)
|
|
nym-sdk = { path = "../../rust/nym-sdk/" }
|
|
nym-bin-common = { path = "../../../common/bin-common" }
|
|
nym-crypto = { path = "../../../common/crypto" }
|
|
nym-sphinx-anonymous-replies = { path = "../../../common/nymsphinx/anonymous-replies" }
|
|
# static var macro
|
|
lazy_static = { workspace = true }
|
|
# error handling
|
|
anyhow = { workspace = true }
|
|
# base58 en/decoding
|
|
bs58 = { workspace = true }
|
|
# UDL test
|
|
uniffi = { workspace = true, features = ["cli"] }
|
|
|
|
[build-dependencies]
|
|
uniffi = { workspace = true, features = ["build"] }
|
|
uniffi_build = { workspace = true, features = ["builtin-bindgen"] }
|