42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "nym-go-ffi"
|
|
description = "Go FFI bindings for Nym Rust SDK"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
publish = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
name = "nym_go_ffi"
|
|
|
|
[dependencies]
|
|
# Bindgen
|
|
uniffi = { workspace = true, features = ["cli"] }
|
|
# Nym clients, addressing, packet format, common tools (logging), ffi shared
|
|
nym-sdk = { workspace = true }
|
|
nym-crypto = { workspace = true }
|
|
nym-bin-common = { workspace = true, features = ["basic_tracing"] }
|
|
nym-sphinx-anonymous-replies = { workspace = true }
|
|
nym-ffi-shared = { workspace = true }
|
|
# Async runtime
|
|
tokio = { workspace = true, features = ["full"] }
|
|
lazy_static = { workspace = true }
|
|
# error handling
|
|
anyhow = { workspace = true }
|
|
thiserror.workspace = true
|
|
|
|
[build-dependencies]
|
|
uniffi = { workspace = true, features = ["build"] }
|
|
uniffi_build = { workspace = true, features = ["builtin-bindgen"] }
|
|
|
|
[[bin]]
|
|
name = "uniffi-bindgen"
|
|
path = "uniffi-bindgen.rs"
|