[package]
name = "pin-project-internal"
version = "0.4.0-alpha.5"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0/MIT"
repository = "https://github.com/taiki-e/pin-project"
documentation = "https://docs.rs/pin-project-internal/"
keywords = ["pin", "macros", "attribute"]
categories = ["rust-patterns"]
description = "An interal crate to support pin_project - do not use directly"
[package.metadata.docs.rs]
all-features = true
[lib]
proc-macro = true
[features]
project_attr = ["syn/visit-mut"]
renamed = ["proc-macro-crate", "serde", "lazy_static"]
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full"] }
proc-macro-crate = { version = "0.1.4", optional = true }
serde = { version = "1.0.97", optional = true }
lazy_static = { version = "1.3", optional = true }
[dev-dependencies]
pin-project = { version = "0.4.0-alpha", path = ".." }