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