1[package] 2name = "futures-macro" 3edition = "2018" 4version = "0.3.13" 5authors = ["Taylor Cramer <cramertj@google.com>", "Taiki Endo <te316e89@gmail.com>"] 6license = "MIT OR Apache-2.0" 7repository = "https://github.com/rust-lang/futures-rs" 8homepage = "https://rust-lang.github.io/futures-rs" 9documentation = "https://docs.rs/futures-macro/0.3" 10description = """ 11The futures-rs procedural macro implementations. 12""" 13 14[lib] 15proc-macro = true 16 17[features] 18 19[dependencies] 20proc-macro2 = "1.0" 21proc-macro-hack = "0.5.19" 22quote = "1.0" 23syn = { version = "1.0", features = ["full"] } 24