blob: 7d31bb0c91726b76552e5ff186fc31c52b6be6b4 [file] [log] [blame]
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -07001[package]
2name = "pin-project"
Haibo Huang6c94c6b2020-11-18 15:37:31 -08003version = "1.0.2"
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -07004authors = ["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",
Chih-Hung Hsieh127364b2020-10-26 16:54:29 -070023 "tests/auxiliary/macro",
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070024 "tests/doc",
25 "tests/expand",
Haibo Huangd58366d2020-07-10 20:23:30 -070026 "tests/no-core",
27 "tests/no-std",
28 "tests/rust-2015",
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070029]
30
31[dependencies]
Haibo Huang6c94c6b2020-11-18 15:37:31 -080032pin-project-internal = { version = "=1.0.2", path = "pin-project-internal", default-features = false }
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070033
Chih-Hung Hsieh127364b2020-10-26 16:54:29 -070034[dev-dependencies]
35pin-project-auxiliary-macro = { version = "0", path = "tests/auxiliary/macro" }
36rustversion = "1"
37static_assertions = "1"
38trybuild = "1"