ab4cc9b282
* first commit in monorepo * *formatting *added license * Fix up license headers --------- Co-authored-by: mfahampshire <mfahampshire@pm.me> Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com>
24 lines
619 B
TOML
24 lines
619 B
TOML
[package]
|
|
name = "nym_cpp_ffi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "nym_cpp_ffi"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# Async runtime
|
|
tokio = { version = "1", features = ["full"] }
|
|
# Nym clients, addressing, packet format, common tools (logging)
|
|
nym-sdk = { git = "https://github.com/nymtech/nym", branch = "master" }
|
|
nym-bin-common = { git = "https://github.com/nymtech/nym", branch = "master" }
|
|
nym-sphinx-anonymous-replies = { git = "https://github.com/nymtech/nym", branch = "master" }
|
|
# static var macro
|
|
lazy_static = "1.4.0"
|
|
# error handling
|
|
anyhow = "1.0.75"
|
|
# base58 en/decoding
|
|
bs58 = "0.5.0"
|
|
|