add tracing + custom error type
All checks were successful
CI/CD Pipeline / test (push) Successful in 2m18s
CI/CD Pipeline / deploy (push) Successful in 2m38s

This commit is contained in:
Philipp Hofer
2025-10-16 11:06:51 +02:00
parent 14ee4d2767
commit 4702017914
4 changed files with 44 additions and 11 deletions

13
Cargo.lock generated
View File

@@ -726,6 +726,7 @@ dependencies = [
"serde_json",
"thiserror",
"tokio",
"tracing",
]
[[package]]
@@ -1291,9 +1292,21 @@ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
dependencies = [
"log",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
version = "0.1.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
version = "0.1.34"