84c1679973
* Add nym- prefix to nymcoconut * Add nym- prefix to validator-client * Add nym- prefix to gateway-requests * Add nym- prefix to mobile-storage * Add nym- prefix to gateway-client * Add nym- prefix to client-core * rustfmt
32 lines
911 B
TOML
32 lines
911 B
TOML
# Copyright 2020 - Nym Technologies SA <contact@nymtech.net>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
[package]
|
|
name = "nym-gateway-requests"
|
|
version = "0.1.0"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bs58 = "0.4.0"
|
|
futures = "0.3.15"
|
|
log = { workspace = true }
|
|
nym-sphinx = { path = "../../common/nymsphinx" }
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = "1.0"
|
|
|
|
nym-crypto = { path = "../../common/crypto" }
|
|
nym-pemstore = { path = "../../common/pemstore" }
|
|
|
|
nym-coconut-interface = { path = "../../common/coconut-interface" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
|
|
[dependencies.tungstenite]
|
|
version = "0.13.0"
|
|
default-features = false
|
|
|