1[package]
2name = "pin-project-internal"
3version = "1.1.5" #publish:version
4edition = "2021"
5rust-version = "1.56"
6license = "Apache-2.0 OR MIT"
7repository = "https://github.com/taiki-e/pin-project"
8keywords = ["pin", "macros", "attribute"]
9categories = ["no-std", "no-std::no-alloc", "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.0.60"
22quote = "1.0.25"
23syn = { version = "2.0.1", features = ["full", "visit-mut"] }
24
25[dev-dependencies]
26pin-project = { path = ".." }
27
28[lints]
29workspace = true
30