swap a decode into a fromrow to please future postgres feature (#5785)

* swap a decode into a fromrow to please future postgres feature

* add missing feature and missing crate in log filter
This commit is contained in:
Simon Wicky
2025-05-20 15:48:09 +02:00
committed by GitHub
parent add57b2c14
commit 03bec90b83
4 changed files with 5 additions and 4 deletions
Generated
+1 -1
View File
@@ -6306,7 +6306,7 @@ dependencies = [
[[package]]
name = "nym-node-status-api"
version = "2.3.1"
version = "2.3.2"
dependencies = [
"ammonia",
"anyhow",
@@ -3,7 +3,7 @@
[package]
name = "nym-node-status-api"
version = "2.3.1"
version = "2.3.2"
authors.workspace = true
repository.workspace = true
homepage.workspace = true
@@ -30,7 +30,7 @@ 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", "serde"] }
nym-http-api-client = { path = "../../common/http-api-client" }
nym-http-api-common = { path = "../../common/http-api-common" }
nym-http-api-common = { path = "../../common/http-api-common", features = ["middleware"]}
nym-network-defaults = { path = "../../common/network-defaults" }
nym-serde-helpers = { path = "../../common/serde-helpers" }
nym-statistics-common = { path = "../../common/statistics" }
@@ -421,7 +421,7 @@ impl ScraperNodeInfo {
}
#[allow(dead_code)] // it's not dead code but clippy doesn't detect usage in sqlx macros
#[derive(sqlx::Decode, Debug)]
#[derive(FromRow, Debug)]
pub(crate) struct NymNodeDto {
pub node_id: i64,
pub ed25519_identity_pubkey: String,
@@ -30,6 +30,7 @@ pub(crate) fn setup_tracing_logger() -> anyhow::Result<()> {
"hyper",
"sqlx",
"h2",
"nym-http-api-client",
"tendermint_rpc",
"tower_http",
"axum",