1[package] 2name = "pin-project" 3version = "1.0.6" 4authors = ["Taiki Endo <te316e89@gmail.com>"] 5edition = "2018" 6license = "Apache-2.0 OR MIT" 7repository = "https://github.com/taiki-e/pin-project" 8documentation = "https://docs.rs/pin-project" 9keywords = ["pin", "macros", "attribute"] 10categories = ["no-std", "rust-patterns"] 11exclude = ["/.*", "/ci", "/tools"] 12description = """ 13A crate for safe and ergonomic pin-projection. 14""" 15 16[package.metadata.docs.rs] 17targets = ["x86_64-unknown-linux-gnu"] 18 19[workspace] 20members = [ 21 "pin-project-internal", 22 "tests/auxiliary/macro", 23 "tests/doc", 24 "tests/no-core", 25 "tests/no-std", 26 "tests/rust-2015", 27] 28 29[dependencies] 30pin-project-internal = { version = "=1.0.6", path = "pin-project-internal", default-features = false } 31 32[dev-dependencies] 33pin-project-auxiliary-macro = { path = "tests/auxiliary/macro" } 34macrotest = "1.0.8" 35rustversion = "1" 36static_assertions = "1" 37trybuild = "1" 38