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