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
27 lines
707 B
TOML
27 lines
707 B
TOML
[package]
|
|
name = "echo-server"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
dashmap.workspace = true
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-stream.workspace = true
|
|
tokio-util.workspace = true
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
bincode = "1.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
tracing.workspace = true
|
|
tracing-subscriber = "0.3"
|
|
bytecodec = { workspace = true }
|
|
nym-sdk = { path = "../../sdk/rust/nym-sdk/" }
|
|
bytes.workspace = true
|
|
dirs.workspace = true
|