blob: c8869962e514071509509cca31e63e7a7d5edcbd [file] [log] [blame]
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -07001[package]
2name = "pin-project"
3version = "0.4.16"
4authors = ["Taiki Endo <te316e89@gmail.com>"]
5edition = "2018"
6license = "Apache-2.0 OR MIT"
7repository = "https://github.com/taiki-e/pin-project"
8homepage = "https://github.com/taiki-e/pin-project"
9documentation = "https://docs.rs/pin-project"
10keywords = ["pin", "macros", "attribute"]
11categories = ["no-std", "rust-patterns"]
12readme = "README.md"
13description = """
14A crate for safe and ergonomic pin-projection.
15"""
16
17[package.metadata.docs.rs]
18targets = ["x86_64-unknown-linux-gnu"]
19
20[workspace]
21members = [
22 "pin-project-internal",
23 "tests/ui/auxiliary",
24 "tests/doc",
25 "tests/expand",
26 "tests/rust-2015"
27]
28
29[dependencies]
30pin-project-internal = { version = "=0.4.16", path = "pin-project-internal", default-features = false }
31