c75c5e0903
* nymsphinx: rename to nym- prefix in Cargo.toml files * regex use nymsphinx to use nym_sphinx * all: updated explict crate name in a few places
32 lines
883 B
TOML
32 lines
883 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" }
|
|
|
|
coconut-interface = { path = "../../common/coconut-interface" }
|
|
credentials = { path = "../../common/credentials" }
|
|
|
|
[dependencies.tungstenite]
|
|
version = "0.13.0"
|
|
default-features = false
|
|
|