| 1 | [package] |
| 2 | name = "sync_wrapper" |
| 3 | version = "1.0.2" |
| 4 | authors = ["Actyx AG <developer@actyx.io>" ] |
| 5 | edition = "2021" |
| 6 | description = "A tool for enlisting the compiler's help in proving the absence of concurrency" |
| 7 | readme = "README.md" |
| 8 | repository = "https://github.com/Actyx/sync_wrapper" |
| 9 | documentation = "https://docs.rs/sync_wrapper" |
| 10 | homepage = "https://docs.rs/sync_wrapper" |
| 11 | license = "Apache-2.0" |
| 12 | keywords = ["concurrency" ] |
| 13 | categories = ["concurrency" ] |
| 14 | |
| 15 | [features] |
| 16 | futures = ["futures-core" ] |
| 17 | |
| 18 | [dev-dependencies] |
| 19 | pin-project-lite = "0.2.7" |
| 20 | futures = { version = "0.3" } |
| 21 | |
| 22 | [dependencies] |
| 23 | futures-core = { version = "0.3" , default-features = false, optional = true } |
| 24 | |
| 25 | [package.metadata.docs.rs] |
| 26 | all-features = true |
| 27 | |
| 28 | |