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
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
# Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
[package]
|
|
name = "nym-node-status-agent"
|
|
version = "1.1.1"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
futures = { workspace = true }
|
|
nym-bin-common = { workspace = true, features = ["models"] }
|
|
nym-crypto = { workspace = true, features = ["asymmetric", "rand"] }
|
|
|
|
nym-node-status-client = { path = "../nym-node-status-client" }
|
|
rand = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = [
|
|
"macros",
|
|
"rt-multi-thread",
|
|
"process",
|
|
"fs",
|
|
] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|