# Copyright 2020 - Nym Technologies SA # SPDX-License-Identifier: Apache-2.0 [package] name = "nym-gateway-requests" version = "0.1.0" authors = ["Jedrzej Stuczynski "] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bs58 = "0.4.0" futures = { workspace = true } generic-array = { workspace = true, features = ["serde"] } log = { workspace = true } rand = { version = "0.7.3", features = ["wasm-bindgen"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } thiserror = { workspace = true } zeroize = { workspace = true } nym-crypto = { path = "../../common/crypto" } nym-pemstore = { path = "../../common/pemstore" } nym-sphinx = { path = "../../common/nymsphinx" } nym-coconut-interface = { path = "../../common/coconut-interface" } nym-credentials = { path = "../../common/credentials" } [dependencies.tungstenite] workspace = true default-features = false