| 1 | [package] |
| 2 | name = "pin-project-internal" |
| 3 | version = "1.1.10" #publish:version |
| 4 | edition = "2021" |
| 5 | rust-version = "1.56" # For syn |
| 6 | license = "Apache-2.0 OR MIT" |
| 7 | repository = "https://github.com/taiki-e/pin-project" |
| 8 | keywords = ["pin" , "macros" , "attribute" ] |
| 9 | categories = ["no-std" , "no-std::no-alloc" , "rust-patterns" ] |
| 10 | description = "" " |
| 11 | Implementation detail of the `pin-project` crate. |
| 12 | " "" |
| 13 | |
| 14 | [package.metadata.docs.rs] |
| 15 | targets = ["x86_64-unknown-linux-gnu" ] |
| 16 | |
| 17 | [lib] |
| 18 | proc-macro = true |
| 19 | |
| 20 | [dependencies] |
| 21 | proc-macro2 = "1.0.60" |
| 22 | quote = "1.0.25" |
| 23 | syn = { version = "2.0.1" , default-features = false, features = ["parsing" , "printing" , "clone-impls" , "proc-macro" , "full" , "visit-mut" ] } |
| 24 | |
| 25 | [dev-dependencies] |
| 26 | pin-project = { path = ".." } |
| 27 | |
| 28 | [lints] |
| 29 | workspace = true |
| 30 | |