bd94dd3055
* Store wireguard peers in db * Add update to nym-node * Move gateway-requests and gateway-storage to common * Carry storage to PeerController field * Double kernel modifications with storage ones * Take storage peers at boot * Link storage query for registration flow * Move authenticator peer comms in peer manager * Modify template too * Remove unused * Fix clippy * Fix clippy non-linux * Keep storage data up-to-date on every check * Check for staleness in storage timestamps * Remove potential for panic in unwrap * Fix clippy * Fmt * Clippy after rebase * Remove in memory test structure
45 lines
1.3 KiB
TOML
45 lines
1.3 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"] }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true, features = ["log"] }
|
|
zeroize = { workspace = true }
|
|
|
|
nym-crypto = { path = "../crypto" }
|
|
nym-pemstore = { path = "../pemstore" }
|
|
nym-sphinx = { path = "../nymsphinx" }
|
|
|
|
nym-credentials = { path = "../credentials" }
|
|
nym-credentials-interface = { path = "../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
|
|
|
|
[dev-dependencies]
|
|
nym-compact-ecash = { path = "../nym_offline_compact_ecash" } # we need specific imports in tests
|