Cargo Features
nosy has no features set by default.
[dependencies]
nosy = { version = "0.1.0", features = ["std", "sync", "async"] }
- std
-
Enables trait implementations on
std
types, rather than onlyalloc
types. - sync
-
Enables use of
std::sync
to implementSync
for our types.Affects
nosy::sync.Notifier
,nosy::sync.NotifierForwarder
,nosy::sync.Cell
,nosy::sync.CellWithLocal
… - async
-
Enables async integration.
Enables futures-core and futures-util
Affects
nosy::future
…