• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "pin-project"
3version = "1.0.10"
4edition = "2018"
5rust-version = "1.37"
6license = "Apache-2.0 OR MIT"
7repository = "https://github.com/taiki-e/pin-project"
8keywords = ["pin", "macros", "attribute"]
9categories = ["no-std", "rust-patterns"]
10exclude = ["/.*", "/ci", "/tools"]
11description = """
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",
21    "tests/auxiliary/macro",
22    "tests/doc",
23    "tests/no-core",
24    "tests/no-std",
25    "tests/rust-2015",
26]
27
28[dependencies]
29pin-project-internal = { version = "=1.0.10", path = "pin-project-internal" }
30
31[dev-dependencies]
32pin-project-auxiliary-macro = { path = "tests/auxiliary/macro" }
33macrotest = "1.0.8"
34rustversion = "1"
35static_assertions = "1"
36trybuild = "1.0.49"
37