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 only alloc types.

sync

Enables use of std::sync to implement Sync 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