blob: 78c2f449199400861065100b049374313b646f39 [file] [log] [blame]
Chih-Hung Hsieh4fc489c2020-05-13 16:08:42 -07001[package]
2name = "pin-project-internal"
David LeGarefa4ad952022-03-02 16:21:21 +00003version = "1.0.10"
Chih-Hung Hsieh4fc489c2020-05-13 16:08:42 -07004edition = "2018"
5license = "Apache-2.0 OR MIT"
6repository = "https://github.com/taiki-e/pin-project"
Chih-Hung Hsieh4fc489c2020-05-13 16:08:42 -07007keywords = ["pin", "macros", "attribute"]
8categories = ["no-std", "rust-patterns"]
9description = """
Chih-Hung Hsieh9018f662020-10-26 16:54:30 -070010Implementation detail of the `pin-project` crate.
Chih-Hung Hsieh4fc489c2020-05-13 16:08:42 -070011"""
12
13[package.metadata.docs.rs]
14targets = ["x86_64-unknown-linux-gnu"]
15
16[lib]
17proc-macro = true
18
19[dependencies]
Chih-Hung Hsieh9018f662020-10-26 16:54:30 -070020proc-macro2 = "1"
21quote = "1"
Haibo Huang48e23c52021-02-09 17:44:30 -080022syn = { version = "1.0.56", features = ["full", "visit-mut"] }
Chih-Hung Hsieh4fc489c2020-05-13 16:08:42 -070023
Haibo Huang48e23c52021-02-09 17:44:30 -080024[dev-dependencies]
25pin-project = { path = ".." }