pin-project-internal 0.4.0-alpha.8

An interal crate to support pin_project - do not use directly
Documentation
[package]
name = "pin-project-internal"
version = "0.4.0-alpha.8"
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]
# Enable to use `project` attribute.
project_attr = ["syn/visit-mut"]
# Enable to allow using the crate with a renamed 'pin-project' dependency
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 }
# Required until a new toml-rs release is made with https://github.com/alexcrichton/toml-rs/pull/311,
# and proc-macro-crate updates to that new version of toml-rs.
serde = { version = "1.0.97", optional = true }
lazy_static = { version = "1.3", optional = true }

[dev-dependencies]

[build-dependencies]
rustc_version = "0.2.3"