Skip to content

Commit

Permalink
[tracing-attributes] future-proof the #[instrument] integration with …
Browse files Browse the repository at this point in the history
…async-trait
  • Loading branch information
nightmared committed Mar 7, 2021
1 parent fe59f77 commit a71ad5b
Show file tree
Hide file tree
Showing 3 changed files with 277 additions and 167 deletions.
5 changes: 2 additions & 3 deletions tracing-attributes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,14 @@ proc-macro = true

[dependencies]
proc-macro2 = "1"
syn = { version = "1", default-features = false, features = ["full", "parsing", "printing", "visit-mut", "clone-impls", "extra-traits", "proc-macro"] }
syn = { version = "1", default-features = false, features = ["full", "parsing", "printing", "visit", "visit-mut", "clone-impls", "extra-traits", "proc-macro"] }
quote = "1"


[dev-dependencies]
tracing = { path = "../tracing", version = "0.2" }
tokio-test = { version = "0.2.0" }
tracing-core = { path = "../tracing-core", version = "0.2"}
async-trait = "0.1"
async-trait = "0.1.44"

[badges]
maintenance = { status = "experimental" }

0 comments on commit a71ad5b

Please sign in to comment.