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