1[package] 2name = "pin-project" 3version = "1.1.3" 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"] 10exclude = ["/.*", "/tools", "/DEVELOPMENT.md"] 11description = """ 12A crate for safe and ergonomic pin-projection. 13""" 14 15[package.metadata.docs.rs] 16targets = ["x86_64-unknown-linux-gnu"] 17 18[workspace] 19resolver = "2" 20members = [ 21 "pin-project-internal", 22 "tests/auxiliary/macro", 23 "tests/no-core", 24 "tests/no-std", 25 "tests/rust-2015", 26] 27 28[lib] 29doc-scrape-examples = false 30 31[dependencies] 32pin-project-internal = { version = "=1.1.3", path = "pin-project-internal" } 33 34[dev-dependencies] 35pin-project-auxiliary-macro = { path = "tests/auxiliary/macro" } 36macrotest = "1.0.9" 37rustversion = "1" 38static_assertions = "1" 39trybuild = "1.0.67" 40