Files
nym/sdk/ffi/cpp/Cargo.toml
T
2024-10-30 07:07:39 +01:00

24 lines
620 B
TOML

[package]
name = "nym-cpp-ffi"
version = "0.1.2"
edition = "2021"
license.workspace = true
[lib]
name = "nym_cpp_ffi"
crate-type = ["cdylib"]
[dependencies]
# Async runtime
tokio = { version = "1", 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" }
nym-sphinx-anonymous-replies = { path = "../../../common/nymsphinx/anonymous-replies" }
nym-ffi-shared = { path = "../shared" }
lazy_static = "1.5.0"
# error handling
anyhow = "1.0.90"
# base58 en/decoding
bs58 = "0.5.0"