1 | [package] |
---|---|
2 | name = "pin-weak" |
3 | version = "1.1.0" |
4 | authors = ["Olivier Goffart <ogoffart@sixtyfps.io>"] |
5 | edition = "2018" |
6 | license = "MIT" |
7 | readme = "README.md" |
8 | description = "Small wrapper around an equivalent of Pin<Weak<T>>" |
9 | keywords = ["pin", "weak", "rc", "arc"] |
10 | categories = [ "memory-management"] |
11 | repository = "https://github.com/sixtyfpsui/pin-weak" |
12 | documentation = "https://docs.rs/pin-weak" |
13 | |
14 | [features] |
15 | # Support for std::sync::arc |
16 | sync = [] |
17 | default = ["sync"] |
18 | |
19 |