diff options
| author | Conrad Ludgate <conrad.ludgate@truelayer.com> | 2022-04-21 18:07:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-21 18:07:33 +0100 |
| commit | 9085485a4f8a6be76d1ac8a8b7a7b65bdf83aa24 (patch) | |
| tree | df3760f5b1467359f9d331d1acfd09763f377221 /atuin-server/Cargo.toml | |
| parent | treat popos as ubuntu (#319) (diff) | |
| download | atuin-9085485a4f8a6be76d1ac8a8b7a7b65bdf83aa24.zip | |
tracing (#315)
* enable tracing on server
* fmt
* instrument handlers
Diffstat (limited to 'atuin-server/Cargo.toml')
| -rw-r--r-- | atuin-server/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/atuin-server/Cargo.toml b/atuin-server/Cargo.toml index 871a31f7..33f5f7cd 100644 --- a/atuin-server/Cargo.toml +++ b/atuin-server/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/ellie/atuin" [dependencies] atuin-common = { path = "../atuin-common", version = "0.8.1" } -log = "0.4" +tracing = "0.1" chrono = { version = "0.4", features = ["serde"] } eyre = "0.6" uuid = { version = "0.8", features = ["v4"] } @@ -31,3 +31,5 @@ axum = "0.5" http = "0.2" fs-err = "2.7" chronoutil = "0.2.3" +tower = "0.4" +tower-http = { version = "0.2", features = ["trace"] } |
