Cargo Features
[dependencies]
rucron = { version = "0.1.6", default-features = false, features = ["tokio", "smol"] }
- default = tokio
-
The
tokio
feature is set by default wheneverrucron
is added without
somewhere in the dependency tree.default-features = false - tokio default
-
Enables tokio
Affects
async_rt::spawn
,async_rt::wait
,async_rt::channel
,async_rt::sleep
… - smol
-
Enables async-channel ^1.8.0, async-lock ^2.6.0, and smol ^1.3.0
Affects
async_rt::spawn
,async_rt::wait
,async_rt::channel
,async_rt::sleep
…