1[package] 2name = "async-trait" 3version = "0.1.50" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5edition = "2018" 6license = "MIT OR Apache-2.0" 7description = "Type erasure for async trait methods" 8repository = "https://github.com/dtolnay/async-trait" 9documentation = "https://docs.rs/async-trait" 10readme = "README.md" 11keywords = ["async"] 12 13[lib] 14proc-macro = true 15 16[dependencies] 17proc-macro2 = "1.0" 18quote = "1.0" 19syn = { version = "1.0.61", features = ["full", "visit-mut"] } 20 21[dev-dependencies] 22futures = "0.3" 23rustversion = "1.0" 24tracing = "0.1.14" 25tracing-attributes = "0.1.14" 26trybuild = { version = "1.0.19", features = ["diff"] } 27 28[package.metadata.docs.rs] 29targets = ["x86_64-unknown-linux-gnu"] 30