Imporved logging and added debug information to get backtraces when errors are encountered
This commit is contained in:
@@ -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"
|
||||
|
Reference in New Issue
Block a user