2ff6bfbdd8
* ability to specify custom TopologyProvider in TopologyRefresher * topology provider builder method for base client * ability to take manual control over topology * wasm fixes * added topology injection to nym-sdk API * added examples to nym-sdk and exposed additional helper methods
30 lines
925 B
TOML
30 lines
925 B
TOML
[package]
|
|
name = "nym-topology"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
readme = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bs58 = "0.4"
|
|
log = { workspace = true }
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
thiserror = "1.0.37"
|
|
async-trait = { workspace = true, optional = true }
|
|
|
|
## internal
|
|
nym-crypto = { path = "../crypto" }
|
|
nym-mixnet-contract-common = { path = "../cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-sphinx-addressing = { path = "../nymsphinx/addressing" }
|
|
nym-sphinx-types = { path = "../nymsphinx/types" }
|
|
nym-bin-common = { path = "../bin-common" }
|
|
|
|
[features]
|
|
default = ["provider-trait"]
|
|
provider-trait = ["async-trait"] |