Files
nym/sdk/ffi/cpp/Cargo.toml
T
2025-07-30 19:55:00 +02:00

24 lines
698 B
TOML

[package]
name = "nym-cpp-ffi"
version.workspace = true
edition = "2021"
license.workspace = true
[lib]
name = "nym_cpp_ffi"
crate-type = ["cdylib"]
[dependencies]
# Async runtime
tokio = { workspace = true, features = ["full"] }
# Nym clients, addressing, packet format, common tools (logging), ffi shared
nym-sdk = { path = "../../rust/nym-sdk/" }
nym-bin-common = { path = "../../../common/bin-common", features = ["basic_tracing"] }
nym-sphinx-anonymous-replies = { path = "../../../common/nymsphinx/anonymous-replies" }
nym-ffi-shared = { path = "../shared" }
lazy_static = { workspace = true }
# error handling
anyhow = { workspace = true }
# base58 en/decoding
bs58 = { workspace = true }