blob: 120858b94180d75a00f37ce8fad2ff99101d0701 [file] [log] [blame]
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -07001[package]
2name = "pin-project"
David LeGare89151932022-03-02 16:21:12 +00003version = "1.0.10"
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -07004edition = "2018"
David LeGare89151932022-03-02 16:21:12 +00005rust-version = "1.37"
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -07006license = "Apache-2.0 OR MIT"
7repository = "https://github.com/taiki-e/pin-project"
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -07008keywords = ["pin", "macros", "attribute"]
9categories = ["no-std", "rust-patterns"]
Elliott Hughesa2c3c562021-04-01 16:34:15 -070010exclude = ["/.*", "/ci", "/tools"]
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070011description = """
12A crate for safe and ergonomic pin-projection.
13"""
14
15[package.metadata.docs.rs]
16targets = ["x86_64-unknown-linux-gnu"]
17
18[workspace]
19members = [
20 "pin-project-internal",
Chih-Hung Hsieh127364b2020-10-26 16:54:29 -070021 "tests/auxiliary/macro",
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070022 "tests/doc",
Haibo Huangd58366d2020-07-10 20:23:30 -070023 "tests/no-core",
24 "tests/no-std",
25 "tests/rust-2015",
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070026]
27
28[dependencies]
David LeGare89151932022-03-02 16:21:12 +000029pin-project-internal = { version = "=1.0.10", path = "pin-project-internal" }
Chih-Hung Hsieh6f3e9272020-05-13 16:08:03 -070030
Chih-Hung Hsieh127364b2020-10-26 16:54:29 -070031[dev-dependencies]
Haibo Huang803535e2021-01-05 21:36:23 -080032pin-project-auxiliary-macro = { path = "tests/auxiliary/macro" }
Haibo Huangc1311072021-02-09 17:42:22 -080033macrotest = "1.0.8"
Chih-Hung Hsieh127364b2020-10-26 16:54:29 -070034rustversion = "1"
35static_assertions = "1"
David LeGare89151932022-03-02 16:21:12 +000036trybuild = "1.0.49"