1 | [package] |
2 | name = "async-trait" |
3 | version = "0.1.78" |
4 | authors = ["David Tolnay <dtolnay@gmail.com>" ] |
5 | categories = ["asynchronous" , "no-std" ] |
6 | description = "Type erasure for async trait methods" |
7 | documentation = "https://docs.rs/async-trait" |
8 | edition = "2021" |
9 | keywords = ["async" ] |
10 | license = "MIT OR Apache-2.0" |
11 | repository = "https://github.com/dtolnay/async-trait" |
12 | rust-version = "1.56" |
13 | |
14 | [lib] |
15 | proc-macro = true |
16 | |
17 | [dependencies] |
18 | proc-macro2 = "1.0.74" |
19 | quote = "1.0.35" |
20 | syn = { version = "2.0.46" , features = ["full" , "visit-mut" ] } |
21 | |
22 | [dev-dependencies] |
23 | futures = "0.3.30" |
24 | rustversion = "1.0.13" |
25 | tracing = "0.1.40" |
26 | tracing-attributes = "0.1.27" |
27 | trybuild = { version = "1.0.81" , features = ["diff" ] } |
28 | |
29 | [package.metadata.docs.rs] |
30 | targets = ["x86_64-unknown-linux-gnu" ] |
31 | rustdoc-args = ["--generate-link-to-definition" ] |
32 | |