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