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