aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorConrad Ludgate <conrad.ludgate@truelayer.com>2022-04-21 18:07:33 +0100
committerGitHub <noreply@github.com>2022-04-21 18:07:33 +0100
commit9085485a4f8a6be76d1ac8a8b7a7b65bdf83aa24 (patch)
treedf3760f5b1467359f9d331d1acfd09763f377221 /Cargo.toml
parenttreat popos as ubuntu (#319) (diff)
downloadatuin-9085485a4f8a6be76d1ac8a8b7a7b65bdf83aa24.zip
tracing (#315)
* enable tracing on server * fmt * instrument handlers
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b39a4f59..b860e40a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -59,6 +59,17 @@ clap = { version = "3.1.10", features = ["derive"] }
clap_complete = "3.1.1"
fs-err = "2.7"
+
+[dependencies.tracing-subscriber]
+version = "0.3"
+default-features = false
+features = [
+ "ansi",
+ "fmt",
+ "registry",
+ "env-filter",
+]
+
[profile.release]
lto = "fat"
codegen-units = 1