1[package] 2name = "pin-project-internal" 3version = "1.0.10" 4edition = "2018" 5license = "Apache-2.0 OR MIT" 6repository = "https://github.com/taiki-e/pin-project" 7keywords = ["pin", "macros", "attribute"] 8categories = ["no-std", "rust-patterns"] 9description = """ 10Implementation detail of the `pin-project` crate. 11""" 12 13[package.metadata.docs.rs] 14targets = ["x86_64-unknown-linux-gnu"] 15 16[lib] 17proc-macro = true 18 19[dependencies] 20proc-macro2 = "1" 21quote = "1" 22syn = { version = "1.0.56", features = ["full", "visit-mut"] } 23 24[dev-dependencies] 25pin-project = { path = ".." } 26