44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
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"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bs58 = { workspace = true }
|
|
futures = { workspace = true }
|
|
generic-array = { workspace = true, features = ["serde"] }
|
|
log = { workspace = true }
|
|
rand = { workspace = true }
|
|
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-credentials = { path = "../../common/credentials" }
|
|
nym-credentials-interface = { path = "../../common/credentials-interface" }
|
|
|
|
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio]
|
|
workspace = true
|
|
features = ["time"]
|
|
|
|
[target."cfg(target_arch = \"wasm32\")".dependencies.wasmtimer]
|
|
workspace = true
|
|
features = ["tokio"]
|
|
|
|
[dependencies.tungstenite]
|
|
workspace = true
|
|
default-features = false
|
|
|
|
|