d3648f13c5
* Add conversion from gw_probe crate type * Move code around - split 1000+ LoC files into smaller ones * Add socks5 field - code improvements in gw_probe crate * Fix docker build - install go - required as build dependency of gw probe * Add logs to agent * NS API: configure DB via env * rebase fix * socks5 score calc * Cargo fmt * use existing div_ceil * Code improvements * Bump NS API version * Rename variables * Bump API & agent version * Try to fix CI * Build only on linux
93 lines
2.7 KiB
TOML
93 lines
2.7 KiB
TOML
[package]
|
|
name = "nym-gateway-probe"
|
|
version = "1.18.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
base64.workspace = true
|
|
bs58.workspace = true
|
|
bincode.workspace = true
|
|
bytes.workspace = true
|
|
clap = { workspace = true, features = ["cargo", "derive"] }
|
|
futures.workspace = true
|
|
hex.workspace = true
|
|
tracing.workspace = true
|
|
pnet_packet.workspace = true
|
|
rand.workspace = true
|
|
reqwest = { workspace = true, features = ["socks"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = [
|
|
"process",
|
|
"rt-multi-thread",
|
|
"fs",
|
|
"sync",
|
|
"macros",
|
|
] }
|
|
tokio-util.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
url = { workspace = true }
|
|
utoipa = { workspace = true, optional = true }
|
|
x25519-dalek = { workspace = true, features = [
|
|
"reusable_secrets",
|
|
"static_secrets",
|
|
] }
|
|
|
|
|
|
nym-api-requests = { path = "../nym-api/nym-api-requests" }
|
|
nym-authenticator-requests = { workspace = true }
|
|
nym-bandwidth-controller = { workspace = true }
|
|
nym-bin-common = { workspace = true }
|
|
nym-client-core = { workspace = true }
|
|
nym-crypto = { workspace = true }
|
|
nym-config = { workspace = true }
|
|
nym-connection-monitor = { path = "../common/nym-connection-monitor" }
|
|
nym-credentials-interface = { workspace = true }
|
|
nym-credential-utils = { workspace = true }
|
|
nym-ip-packet-client = { workspace = true }
|
|
nym-authenticator-client = { workspace = true }
|
|
nym-ip-packet-requests = { workspace = true }
|
|
nym-sdk = { workspace = true }
|
|
nym-validator-client = { workspace = true }
|
|
nym-credentials = { workspace = true }
|
|
nym-http-api-client-macro = { path = "../common/http-api-client-macro" }
|
|
nym-http-api-client = { path = "../common/http-api-client" }
|
|
nym-node-status-client = { path = "../nym-node-status-api/nym-node-status-client" }
|
|
nym-node-requests = { path = "../nym-node/nym-node-requests" }
|
|
nym-registration-client = { path = "../nym-registration-client" }
|
|
nym-lp = { path = "../common/nym-lp" }
|
|
nym-kkt-ciphersuite = { workspace = true }
|
|
|
|
nym-mixnet-contract-common = { path = "../common/cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-network-defaults = { path = "../common/network-defaults" }
|
|
nym-registration-common = { path = "../common/registration" }
|
|
time = { workspace = true }
|
|
|
|
# TEMP: REMOVE BEFORE PR
|
|
nym-topology = { workspace = true }
|
|
|
|
[features]
|
|
utoipa = ["dep:utoipa"]
|
|
|
|
[build-dependencies]
|
|
anyhow = { workspace = true }
|
|
vergen-gitcl = { workspace = true, default-features = false, features = [
|
|
"build",
|
|
"cargo",
|
|
"rustc",
|
|
] }
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["vergen", "nym-http-api-client"]
|