blob: ef4603012ce114abbb52b2258bdf6bc0a569aa28 [file] [log] [blame]
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -07001[package]
2name = "pin-project"
Elliott Hughesa2c3c562021-04-01 16:34:15 -07003version = "1.0.6"
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"
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -07008documentation = "https://docs.rs/pin-project"
9keywords = ["pin", "macros", "attribute"]
10categories = ["no-std", "rust-patterns"]
Elliott Hughesa2c3c562021-04-01 16:34:15 -070011exclude = ["/.*", "/ci", "/tools"]
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070012description = """
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",
Chih-Hung Hsieh127364b2020-10-26 16:54:29 -070022 "tests/auxiliary/macro",
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070023 "tests/doc",
Haibo Huangd58366d2020-07-10 20:23:30 -070024 "tests/no-core",
25 "tests/no-std",
26 "tests/rust-2015",
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070027]
28
29[dependencies]
Elliott Hughesa2c3c562021-04-01 16:34:15 -070030pin-project-internal = { version = "=1.0.6", path = "pin-project-internal", default-features = false }
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070031
Chih-Hung Hsieh127364b2020-10-26 16:54:29 -070032[dev-dependencies]
Haibo Huang803535e2021-01-05 21:36:23 -080033pin-project-auxiliary-macro = { path = "tests/auxiliary/macro" }
Haibo Huangc1311072021-02-09 17:42:22 -080034macrotest = "1.0.8"
Chih-Hung Hsieh127364b2020-10-26 16:54:29 -070035rustversion = "1"
36static_assertions = "1"
37trybuild = "1"