Imporved logging and added debug information to get backtraces when errors are encountered

This commit is contained in:
2024-04-23 18:19:35 +03:00
parent 305b796d51
commit 1b9fa77b13
10 changed files with 66 additions and 65 deletions

View File

@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true
debug = 1
lto = true
codegen-units = 1
@@ -23,11 +23,14 @@ workspace = true
[dependencies]
ahash = "0.8"
anyhow = "1"
anyhow = { version = "1", features = ["backtrace"] }
arrayvec = "0.7"
base64 = "0.22"
cryptography = { version = "0.1", path = "cryptography" }
derive_more = { version = "0.99.17", default-features = false, features = ["deref", "display"] }
derive_more = { version = "0.99", default-features = false, features = [
"deref",
"display",
] }
dotenvy = "0.15"
entity = { version = "0.1", path = "entity" }
futures = "0.3"