e7f806219c
* Move client code to NS API * Move client to separate package * Move things around * Adjust run scripts * rustfmt * Add client to workspace
29 lines
964 B
TOML
29 lines
964 B
TOML
# Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
[package]
|
|
name = "nym-node-status-agent"
|
|
version = "1.0.0-rc.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
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true}
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
nym-bin-common = { path = "../../common/bin-common", features = ["models"]}
|
|
nym-node-status-client = { path = "../nym-node-status-client" }
|
|
nym-crypto = { path = "../../common/crypto", features = ["asymmetric", "rand"] }
|
|
rand = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "process"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|