docs.rs failed to build car-scheduler-0.24.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
car-scheduler-0.23.0
car-scheduler
Task scheduling and background execution for the Common Agent Runtime.
What it does
Manages persistent task definitions and executes them based on triggers: once, interval, cron, file watch, or manual. Tasks are persisted to disk and can be spawned as background agent runs with cancellation support.
Usage
use ;
let task = new
.with_trigger
.with_system_prompt;
let handle = spawn_task;
handle.cancel; // cancel later
Part of CAR -- see the main repo for full documentation.