d315a2a91b
* Add nym prefix to coconut-dkg * Add nym prefix to coconut-bandwidth * Add nym prefix to bandwidth-claim-contract * Add nym prefix to coconut-bandwidth-contract-common * Add nym prefix to coconut-dkg-common * Add nym prefix to group-contract-common * Add nym prefix to multisig-contract-common * Add nym prefix to coconut-interface * Add nym prefix to credential-storage * rustfmt * Mark coconut-test crate as private * Fix build errors * rustfmt
32 lines
891 B
TOML
32 lines
891 B
TOML
# Copyright 2020 - Nym Technologies SA <contact@nymtech.net>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
[package]
|
|
name = "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 = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
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
|
|
|