Cargo Features
[dependencies]
blueprint-producers-extra = { version = "0.1.0-alpha.1", default-features = false, features = ["std", "tracing", "cron"] }
- default = std
-
The
std
feature is set by default wheneverblueprint-producers-extra
is added without
somewhere in the dependency tree.default-features = false - std default cron?
-
By default, no producers will be available. You can enable them with their respective feature flags.
### Core
Enable standard library support. Currently unused - tracing
-
Enable tracing support
Enables tracing of blueprint-core
- cron = std
-
Extra producers
A cron job producer
Enables chrono, tokio, and tokio-cron-scheduler
chrono:
Cron
Affects
blueprint-producers-extra::cron
…