maybe-async-rs
maybe-async-rs copied to clipboard
feat: add `default_sync` and `is_async` feature gate
Purpose of these features is to enable depdendants to provide a feature to enable async support instead of a feature to disable it. Creates (which would want to be sync by default) could then:
- Always enable the
default_syncfeature. - Enable async support with the
is_asyncfeature when needed.