1[package]
2name = "pin-project-lite"
3version = "0.2.13"
4edition = "2018"
5rust-version = "1.37"
6license = "Apache-2.0 OR MIT"
7repository = "https://github.com/taiki-e/pin-project-lite"
8keywords = ["pin", "macros"]
9categories = ["no-std", "no-std::no-alloc", "rust-patterns"]
10exclude = ["/.*", "/tools", "/DEVELOPMENT.md"]
11description = """
12A lightweight version of pin-project written with declarative macros.
13"""
14
15[package.metadata.docs.rs]
16targets = ["x86_64-unknown-linux-gnu"]
17
18[workspace]
19members = [
20 "tests/no-core",
21 "tests/no-std",
22]
23
24[lib]
25doc-scrape-examples = false
26
27[dev-dependencies]
28macrotest = "1.0.9"
29rustversion = "1"
30static_assertions = "1"
31trybuild = "=1.0.67"
32
33# For test on MSRV.
34once_cell = "=1.14"
35proc-macro2 = "=1.0.65"
36quote = "=1.0.30"
37serde = "=1.0.156"
38toml = "=0.5.9"
39
40[patch.crates-io]
41prettyplease = { git = "https://github.com/taiki-e/prettyplease.git", branch = "dev" } # lower MSRV
42