09b68a8204
* Revert "NS API with directory v2 (#5068)"
This reverts commit cf4fe5f875.
* Merge pull request #5050 from nymtech/dz-node-status-api
Node Status API
* Ns agent workflow (#5055)
* feat: add dockerfile
* add github workflow for node status agent
---------
Co-authored-by: Fran Arbanas <arbanasfran@gmail.com>
* NS API with directory v2 (#5058)
* Use unstable explorer client
* Clean up stale testruns & logging
- log gw identity key
- better agent testrun logging
- log responses
- change response code for agents
* Better logging on agent
* Testrun stores gw identity key instead of gw pk
* Agent 0.1.3
* Agent 0.1.4
* Sqlx offline query data + clippy
* Compatible with directory v2
* Point to internal deps + rebase + v0.1.5
* self described field not null
* Fix build.rs typo
* Fix clippy
---------
Co-authored-by: Fran Arbanas <arbanasfran@gmail.com>
49 lines
1.6 KiB
TOML
49 lines
1.6 KiB
TOML
[package]
|
|
name = "nym-bin-common"
|
|
version = "0.6.0"
|
|
description = "Common code for nym binaries"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
clap = { workspace = true, features = ["derive"], optional = true }
|
|
clap_complete = { workspace = true, optional = true }
|
|
clap_complete_fig = { workspace = true, optional = true }
|
|
const-str = { workspace = true }
|
|
log = { workspace = true }
|
|
pretty_env_logger = { workspace = true }
|
|
schemars = { workspace = true, features = ["preserve_order"], optional = true }
|
|
semver.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true, optional = true }
|
|
|
|
## tracing
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"], optional = true }
|
|
tracing-tree = { workspace = true, optional = true }
|
|
opentelemetry-jaeger = { workspace = true, features = ["rt-tokio", "collector_client", "isahc_collector_client"], optional = true }
|
|
tracing-opentelemetry = { workspace = true, optional = true }
|
|
utoipa = { workspace = true, optional = true }
|
|
opentelemetry = { workspace = true, features = ["rt-tokio"], optional = true }
|
|
|
|
|
|
[build-dependencies]
|
|
vergen = { workspace = true, features = ["build", "git", "gitcl", "rustc", "cargo"] }
|
|
|
|
[features]
|
|
default = []
|
|
openapi = ["utoipa"]
|
|
output_format = ["serde_json", "dep:clap"]
|
|
bin_info_schema = ["schemars"]
|
|
basic_tracing = ["tracing-subscriber"]
|
|
tracing = [
|
|
"basic_tracing",
|
|
"tracing-tree",
|
|
"opentelemetry-jaeger",
|
|
"tracing-opentelemetry",
|
|
"opentelemetry",
|
|
]
|
|
clap = [ "dep:clap", "dep:clap_complete", "dep:clap_complete_fig" ]
|
|
models = []
|