blob: c340ced6c1b79b2d04978d0e590a32b87359a88c [file] [log] [blame]
Andrew Walbrand1b91c72020-08-11 17:12:08 +01001[package]
2name = "async-trait"
David LeGareffb07e72022-03-01 18:48:27 +00003version = "0.1.52"
Andrew Walbrand1b91c72020-08-11 17:12:08 +01004authors = ["David Tolnay <dtolnay@gmail.com>"]
5edition = "2018"
David LeGareffb07e72022-03-01 18:48:27 +00006rust-version = "1.39"
Andrew Walbrand1b91c72020-08-11 17:12:08 +01007license = "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"
Jeff Vander Stoepf833bce2021-04-21 14:43:55 +020012keywords = ["async"]
Andrew Walbrand1b91c72020-08-11 17:12:08 +010013
14[lib]
15proc-macro = true
16
17[dependencies]
18proc-macro2 = "1.0"
19quote = "1.0"
Joel Galenson5448f372021-04-01 15:10:30 -070020syn = { version = "1.0.61", features = ["full", "visit-mut"] }
Andrew Walbrand1b91c72020-08-11 17:12:08 +010021
22[dev-dependencies]
Jeff Vander Stoepf833bce2021-04-21 14:43:55 +020023futures = "0.3"
Andrew Walbrand1b91c72020-08-11 17:12:08 +010024rustversion = "1.0"
25tracing = "0.1.14"
Jeff Vander Stoepf833bce2021-04-21 14:43:55 +020026tracing-attributes = "0.1.14"
David LeGareffb07e72022-03-01 18:48:27 +000027trybuild = { version = "1.0.49", features = ["diff"] }
Andrew Walbrand1b91c72020-08-11 17:12:08 +010028
29[package.metadata.docs.rs]
30targets = ["x86_64-unknown-linux-gnu"]